aimpress-chatbot/node_modules/botframework-streaming/lib/disassemblers/requestDisassembler.d.ts
“SamoilenkoVadym” 55445dbc86
Some checks failed
Build and deploy Node.js app to Azure Web App - ChatBot2222 / build (push) Has been cancelled
Build and deploy Node.js app to Azure Web App - ChatBot2222 / deploy (push) Has been cancelled
Deploy bot to Azure
2025-04-27 19:55:19 +01:00

34 lines
No EOL
1.3 KiB
TypeScript

/**
* @module botframework-streaming
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { IStreamWrapper } from '../interfaces';
import { PayloadTypes } from '../payloads/payloadTypes';
import type { PayloadSender } from '../payloadTransport/payloadSender';
import type { StreamingRequest } from '../streamingRequest';
import { PayloadDisassembler } from './payloadDisassembler';
/**
* Streaming request disassembler.
*/
export declare class RequestDisassembler extends PayloadDisassembler {
request?: StreamingRequest;
payloadType: PayloadTypes;
/**
* Initializes a new instance of the [RequestDisassembler](xref:botframework-streaming.RequestDisassembler) class.
*
* @param sender The [PayloadSender](xref:botframework-streaming.PayloadSender) to send the disassembled data to.
* @param id The ID of this disassembler.
* @param request The request to be disassembled.
*/
constructor(sender: PayloadSender, id: string, request?: StreamingRequest);
/**
* Gets the stream this disassembler is operating on.
*
* @returns An [IStreamWrapper](xref:botframework-streaming.IStreamWrapper) with a Subscribable Stream.
*/
getStream(): Promise<IStreamWrapper>;
}
//# sourceMappingURL=requestDisassembler.d.ts.map