@botonic/react
Version:
Build Chatbots using React
10 lines (9 loc) • 340 B
TypeScript
import { EventAction } from '@botonic/core';
import { DebugEventConfig } from '../types';
export interface FallbackDebugEvent {
action: EventAction.Fallback;
user_input: string;
fallback_out: number;
fallback_message_id: string;
}
export declare const getFallbackEventConfig: (data: FallbackDebugEvent) => DebugEventConfig;