UNPKG

@aws-amplify/interactions

Version:

Interactions category of aws-amplify

18 lines (14 loc) 412 B
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import { InteractionsMessage, InteractionsOnCompleteCallback, } from './Interactions'; export interface InteractionsSendInput { botName: string; message: string | InteractionsMessage; } export interface InteractionsOnCompleteInput { botName: string; callback: InteractionsOnCompleteCallback; }