UNPKG

plazbot

Version:

Official Plazbot SDK for creating AI agents for WhatsApp, portals, and developers.

14 lines (13 loc) 414 B
import { AxiosInstance } from 'axios'; import { PlazbotOptions } from '../types'; export declare class PlazbotHttp { protected workspaceId: string; protected apiKey: string; protected baseUrl: string; protected http: AxiosInstance; constructor(options: PlazbotOptions); protected throwIfError(response: { status: number; statusText: string; }, context: string): void; }