@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 { HtVideoNode } from './hubtype-fields';
export declare class FlowVideo extends ContentFieldsBase {
src: string;
static fromHubtypeCMS(component: HtVideoNode, locale: string): FlowVideo;
trackFlow(botonicContext: BotonicContext): Promise<void>;
processContent(botonicContext: BotonicContext): Promise<import(".").FlowContent>;
toBotonic(): Promise<BotServerMessage>;
}