@botonic/plugin-flow-builder
Version:
Botonic plugin for **Hubtype Flow Builder**: run and bridge flow-driven logic from bots on the **current** line.
11 lines (10 loc) • 521 B
TypeScript
import { BotonicContext, BotServerMessage } from '@botonic/core';
import { ContentFieldsBase } from './content-fields-base';
import { HtImageNode } from './hubtype-fields';
export declare class FlowImage extends ContentFieldsBase {
src: string;
static fromHubtypeCMS(component: HtImageNode, locale: string): FlowImage;
trackFlow(botonicContext: BotonicContext): Promise<void>;
processContent(botonicContext: BotonicContext): Promise<import(".").FlowContent>;
toBotonic(): Promise<BotServerMessage>;
}