UNPKG

@botonic/plugin-flow-builder

Version:

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

13 lines (12 loc) 548 B
import { BotonicContext } from '@botonic/core'; import { ContentFieldsBase } from './content-fields-base'; import { HtWebviewExits, HtWebviewNode } from './hubtype-fields'; export declare class FlowWebview extends ContentFieldsBase { webviewTargetId: string; webviewName: string; webviewComponentName: string; exits: HtWebviewExits[]; static fromHubtypeCMS(component: HtWebviewNode): FlowWebview; trackFlow(botonicContext: BotonicContext): Promise<void>; processContent(botonicContext: BotonicContext): Promise<void>; }