UNPKG

tyntec-sdk

Version:

TypeScript SDK for Tyntec Conversations API V3

13 lines (12 loc) 332 B
export type TyntecConfig = { apiKey: string; baseUrl?: string; idWhatsAppAccount?: string; retry?: { attempts: number; backoffMs: number; }; }; export interface RequestHttp { send: (method: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE', endpoint: string, body?: unknown) => Promise<unknown>; }