UNPKG

@botonic/plugin-flow-builder

Version:

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

11 lines (10 loc) 337 B
import { HtBaseNode } from './common'; import { HtFunctionResult } from './function'; import { HtNodeWithContentType } from './node-types'; export interface HtCountryConditionalNode extends HtBaseNode { type: HtNodeWithContentType.FUNCTION; content: { action: string; result_mapping: HtFunctionResult[]; }; }