plazbot
Version:
Official Plazbot SDK for creating AI agents for WhatsApp, portals, and developers.
9 lines (8 loc) • 355 B
TypeScript
import { PlazbotHttp } from './http';
import { PlazbotOptions, WhatsAppTemplate } from '../types';
export declare class Template extends PlazbotHttp {
constructor(options: PlazbotOptions);
getTemplates(): Promise<WhatsAppTemplate[]>;
getActiveTemplates(): Promise<WhatsAppTemplate[]>;
getTemplate(id: string): Promise<WhatsAppTemplate>;
}