@botonic/react
Version:
Build Chatbots using React
16 lines (15 loc) • 420 B
TypeScript
export interface ProductItem {
productRetailerId: string;
}
export interface WhatsappProductListSection {
title: string;
productItems: ProductItem[];
}
export interface WhatsappProductListProps {
body: string;
header: string;
catalogId: string;
sections: WhatsappProductListSection[];
footer?: string;
}
export declare const WhatsappProductList: (props: WhatsappProductListProps) => any;