UNPKG

@botonic/plugin-flow-builder

Version:

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

10 lines (9 loc) 251 B
import { HtBaseNode } from './common'; import { HtNodeWithContentType } from './node-types'; export interface HtGoToFlow extends HtBaseNode { id: string; type: HtNodeWithContentType.GO_TO_FLOW; content: { flow_id: string; }; }