@aws-amplify/interactions
Version:
Interactions category of aws-amplify
15 lines (12 loc) • 418 B
text/typescript
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
import { onComplete, send } from './apis';
import { IInteractions } from './types/AWSLexProviderOption';
/**
* @deprecated recommend to migrate to AWS Lex V2 instead
* */
export const Interactions: IInteractions = {
send,
onComplete,
};
export { SendInput, OnCompleteInput, SendOutput } from './types';