@microsoft/agents-hosting
Version:
Microsoft 365 Agents SDK for JavaScript
18 lines (17 loc) • 354 B
TypeScript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/**
* Represents the response of an invoke request.
*/
export interface InvokeResponse<T = any> {
/**
* The status code of the response.
*/
status: number;
/**
* The optional body of the response.
*/
body?: T;
}