UNPKG

@botonic/plugin-flow-builder

Version:

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

12 lines (11 loc) 482 B
import { BotonicContext } from '@botonic/core'; import type { FlowBuilderApi } from '../api'; import { type BotonicPluginFlowBuilder } from '../index'; export interface FlowBuilderContext { cmsApi: FlowBuilderApi; flowBuilderPlugin: BotonicPluginFlowBuilder; botonicContext: BotonicContext; resolvedLocale: string; contentID?: string; } export declare function getFlowBuilderActionContext(botonicContext: BotonicContext, contentID?: string): FlowBuilderContext;