@botonic/react
Version:
Build Chatbots using React
11 lines (10 loc) • 375 B
TypeScript
import { EventAction } from '@botonic/core';
import { DebugEventConfig } from '../types';
export interface RedirectFlowDebugEvent {
action: EventAction.RedirectFlow;
flow_id: string;
flow_name: string;
flow_target_id: string;
flow_target_name: string;
}
export declare const getRedirectFlowEventConfig: (data: RedirectFlowDebugEvent) => DebugEventConfig;