@botonic/plugin-flow-builder
Version:
Use Flow Builder to show your contents
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[];
};
}