@aws-amplify/interactions
Version:
Interactions category of aws-amplify
14 lines (13 loc) • 369 B
TypeScript
import { OnCompleteInput, SendInput } from './inputs';
import { SendOutput } from './outputs';
export interface AWSLexV2ProviderOption {
name: string;
botId: string;
aliasId: string;
localeId: string;
region: string;
}
export interface IInteractions {
send(input: SendInput): Promise<SendOutput>;
onComplete(input: OnCompleteInput): void;
}