1 | import { Middleware, TurnContext } from 'botbuilder-core';
|
2 |
|
3 |
|
4 |
|
5 |
|
6 | export declare class SetSpeakMiddleware implements Middleware {
|
7 | private readonly voiceName;
|
8 | private readonly fallbackToTextForSpeak;
|
9 | |
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 | constructor(voiceName: string | null, fallbackToTextForSpeak: boolean);
|
16 | /**
|
17 | * Processes an incoming activity.
|
18 | *
|
19 | * @param turnContext The context object for this turn.
|
20 | * @param next The delegate to call to continue the bot middleware pipeline.
|
21 | * @returns A promise representing the async operation.
|
22 | */
|
23 | onTurn(turnContext: TurnContext, next: () => Promise<void>): Promise<void>;
|
24 | }
|
25 | //# sourceMappingURL=setSpeakMiddleware.d.ts.map |
\ | No newline at end of file |