UNPKG

@amaabca/aws-lex-custom-resources

Version:
12 lines (11 loc) 464 B
import { LexIntent, LexSlotType } from '..'; import { LexBotLocaleAttributes, LexSlotTypeAttributes, LexIntentAttributes } from '../lex-data-types'; export default class { props: LexBotLocaleAttributes; slotTypes: LexSlotType[]; intents: LexIntent[]; constructor(props: LexBotLocaleAttributes); addSlotType(slotTypeProps: LexSlotTypeAttributes): LexSlotType; addIntent(intentProps: LexIntentAttributes): LexIntent; definition(): any; }