UNPKG

299 BTypeScriptView Raw
1export interface AWSLexProviderOption {
2 name: string;
3 alias: string;
4 region: string;
5 providerName?: string;
6 onComplete?(botname: string, callback: (err: any, confirmation: any) => void): void;
7}
8export interface AWSLexProviderOptions {
9 [key: string]: AWSLexProviderOption;
10}
11
\No newline at end of file