UNPKG

@calculusky/meta-whatsapp-sdk

Version:
7 lines (6 loc) 367 B
import { HttpsClientOptions, IHttpsClient, IHttpsClientResponse, SendRequestOptions } from "./types/httpsClient"; export default class HttpsClient implements IHttpsClient { protected clientOptions: HttpsClientOptions; constructor(clientOptions: HttpsClientOptions); sendRequest<TData>(options: SendRequestOptions): Promise<IHttpsClientResponse<TData>>; }