@botonic/plugin-flow-builder
Version:
Use Flow Builder to show your contents
13 lines (12 loc) • 617 B
TypeScript
import { 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;
toBotonic(rowIndex: number, sectionIndex: number): WhatsappButtonListRowProps | undefined;
private getRowId;
}