UNPKG

@botonic/plugin-flow-builder

Version:

Use Flow Builder to show your contents

13 lines (11 loc) 397 B
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 //'check-bot-variable' arguments: HtFunctionArguments[] result_mapping: HtFunctionResult[] } }