@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
24 lines (22 loc) • 417 B
text/typescript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
/**
* Represents the response from a cancel operation.
*/
export type CancelOperationResponse = {
/**
* The response object.
*/
_response: Response & {
/**
* The response body as text.
*/
bodyAsText: string;
/**
* The parsed response body.
*/
parsedBody: {};
};
}