@botonic/plugin-flow-builder
Version:
Use Flow Builder to show your contents
11 lines (10 loc) • 337 B
TypeScript
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[];
};
}