@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) • 727 B
TypeScript
import { WhatsappButtonListSection } from '@botonic/shared';
import { FlowBuilderApi } from '../../api';
import { ContentFieldsBase } from '../content-fields-base';
import { HtWhatsappButtonListSection } from '../hubtype-fields';
import { FlowWhatsappButtonListRow } from './flow-whatsapp-button-list-row';
export declare class FlowWhatsappButtonListSection extends ContentFieldsBase {
title: string;
rows: FlowWhatsappButtonListRow[];
static fromHubtypeCMS(component: HtWhatsappButtonListSection, locale: string, cmsApi: FlowBuilderApi): FlowWhatsappButtonListSection;
addSectionToBotonic(sectionIndex: number): WhatsappButtonListSection;
trackFlow(): Promise<void>;
processContent(): Promise<void>;
}