@botonic/react
Version:
Build Chatbots using React
11 lines (10 loc) • 365 B
TypeScript
import { EventAction } from '@botonic/core';
import { DebugEventConfig } from '../types';
export interface KeywordDebugEvent {
action: EventAction.Keyword;
flow_id: string;
flow_node_id: string;
nlu_keyword_is_regex: boolean;
nlu_keyword_name: string;
}
export declare const getKeywordEventConfig: (data: KeywordDebugEvent) => DebugEventConfig;