@botonic/plugin-flow-builder
Version:
Use Flow Builder to show your contents
14 lines (13 loc) • 687 B
TypeScript
import { ActionRequest, WhatsappButtonListRowProps } from '@botonic/react';
import { FlowBuilderApi } from '../../api';
import { ContentFieldsBase } from '../content-fields-base';
import { HtWhatsappButtonListRow } from '../hubtype-fields';
export declare class FlowWhatsappButtonListRow extends ContentFieldsBase {
title: string;
description: string;
targetId?: string;
static fromHubtypeCMS(component: HtWhatsappButtonListRow, locale: string, cmsApi: FlowBuilderApi): FlowWhatsappButtonListRow;
trackFlow(_request: ActionRequest): Promise<void>;
toBotonic(rowIndex: number, sectionIndex: number): WhatsappButtonListRowProps | undefined;
private getRowId;
}