UNPKG

@botonic/plugin-flow-builder

Version:

Botonic plugin for **Hubtype Flow Builder**: run and bridge flow-driven logic from bots on the **current** line.

12 lines (11 loc) 304 B
import { HtBaseNode } from './common'; import { HtNodeWithContentType } from './node-types'; interface SmartIntent { title: string; description: string; } export interface HtSmartIntentNode extends HtBaseNode { type: HtNodeWithContentType.SMART_INTENT; content: SmartIntent; } export {};