UNPKG

407 BTypeScriptView Raw
1export interface InteractionsOptions {
2 [key: string]: any;
3}
4export declare type InteractionsTextMessage = {
5 content: string;
6 options: {
7 messageType: 'text';
8 };
9};
10export declare type InteractionsVoiceMessage = {
11 content: object;
12 options: {
13 messageType: 'voice';
14 };
15};
16export declare type InteractionsMessage = InteractionsTextMessage | InteractionsVoiceMessage;