@enumura/chatbot-flow-editor
Version:
Visual chatbot flow editor - Development tool for creating conversational flows
12 lines • 414 B
TypeScript
import { ChatNode, ChatbotFlow } from '../../types/chatbot';
interface NodeEditorProps {
node: ChatNode;
flow: ChatbotFlow;
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