UNPKG

@aws-amplify/interactions

Version:

Interactions category of aws-amplify

24 lines (20 loc) 466 B
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 export interface InteractionsOptions { [key: string]: any; } export type InteractionsTextMessage = { content: string; options: { messageType: 'text'; }; }; export type InteractionsVoiceMessage = { content: object; options: { messageType: 'voice'; }; }; export type InteractionsMessage = | InteractionsTextMessage | InteractionsVoiceMessage;