UNPKG

@botonic/plugin-flow-builder

Version:

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

14 lines (13 loc) 603 B
import { BotonicContext } from '@botonic/core'; import { FlowBuilderApi } from '../api'; import { ContentFieldsBase } from './content-fields-base'; import { HtGoToFlow } from './hubtype-fields'; export declare class FlowGoToFlow extends ContentFieldsBase { flowTargetId: string; flowTargetName: string; targetId: string; static fromHubtypeCMS(component: HtGoToFlow, cmsApi: FlowBuilderApi): FlowGoToFlow; trackFlow(botonicContext: BotonicContext): Promise<void>; processContent(botonicContext: BotonicContext): Promise<import(".").FlowContent>; toBotonic(): Promise<void>; }