UNPKG

@solufy/evolution-sdk

Version:

Unofficial SDK for the Evolution Whatsapp API v2

9 lines (7 loc) 305 B
type APIRequestInit = Omit<RequestInit, "method" | "body" | "headers"> & { method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE"; params?: Record<string, string | number | boolean | undefined>; headers?: Record<string, string>; body?: object | FormData; }; export type { APIRequestInit };