UNPKG

tyntec-sdk

Version:

TypeScript SDK for Tyntec Conversations API V3

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