@botonic/react
Version:
Build Chatbots using React
8 lines (7 loc) • 305 B
TypeScript
import { EventAction } from '@botonic/core';
import { DebugEventConfig } from '../types';
export interface SmartIntentDebugEvent {
action: EventAction.IntentSmart;
nlu_intent_smart_title: string;
}
export declare const getSmartIntentEventConfig: (data: SmartIntentDebugEvent) => DebugEventConfig;