UNPKG

@botonic/plugin-flow-builder

Version:

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

18 lines (17 loc) 912 B
import { BotonicContext } from '@botonic/core'; import { ContentFieldsBase } from './content-fields-base'; import { HtCustomConditionalNode } from './hubtype-fields/custom-conditional'; import { HtFunctionArguments, HtFunctionResult } from './hubtype-fields/function'; export declare class FlowCustomConditional extends ContentFieldsBase { arguments: HtFunctionArguments[]; resultMapping: HtFunctionResult[]; conditionalResult?: HtFunctionResult; customResult: boolean; variableFormat: string; static fromHubtypeCMS(component: HtCustomConditionalNode, botonicContext: BotonicContext): FlowCustomConditional; setConditionalResult(botonicContext: BotonicContext): void; private isBooleanConditional; trackFlow(botonicContext: BotonicContext): Promise<void>; processContent(botonicContext: BotonicContext): Promise<import(".").FlowContent>; toBotonic(): Promise<void>; }