UNPKG

@calculusky/meta-whatsapp-sdk

Version:
8 lines (7 loc) 200 B
export type HttpMethod = "POST" | "GET" | "PUT"; export interface SendRequestOptions { method: HttpMethod; body: any; endpoint: string; } export type RequesterResponseData<TData> = TData;