UNPKG

@enumura/chatbot-flow-editor

Version:

Visual chatbot flow editor - Development tool for creating conversational flows

11 lines 378 B
import { ChatNode } from '../../types/chatbot'; interface NodeEditorProps { node: ChatNode; onUpdateNode: (title: string) => void; onAddOption: () => void; onEditOption: (index: number) => void; onRemoveOption: (index: number) => void; } declare const NodeEditor: React.FC<NodeEditorProps>; export default NodeEditor; //# sourceMappingURL=NodeEditor.d.ts.map