@botonic/react
Version:
Build Chatbots using React
11 lines (10 loc) • 320 B
TypeScript
export interface WhatsappTemplateProps {
name: string;
language: string;
namespace?: string;
header?: Record<string, any>;
body?: Record<string, any>;
footer?: Record<string, any>;
buttons?: Record<string, any>;
}
export declare const WhatsappTemplate: (props: WhatsappTemplateProps) => any;