@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) • 399 B
TypeScript
import { HtBaseNode } from './common';
import { HtFunctionArguments, HtFunctionResult } from './function';
import { HtNodeWithContentType } from './node-types';
export interface HtCustomConditionalNode extends HtBaseNode {
type: HtNodeWithContentType.FUNCTION;
content: {
action: string;
arguments: HtFunctionArguments[];
result_mapping: HtFunctionResult[];
};
}