UNPKG

347 BTypeScriptView Raw
1export interface AWSLexV2ProviderOption {
2 name: string;
3 botId: string;
4 aliasId: string;
5 localeId: string;
6 region: string;
7 providerName: string;
8 onComplete?(botname: string, callback: (err: any, confirmation: any) => void): void;
9}
10export interface AWSLexV2ProviderOptions {
11 [key: string]: AWSLexV2ProviderOption;
12}
13
\No newline at end of file