///
///
import * as http from "http";
import * as https from "https";
import { BodyInit } from "node-fetch";
export type THTTPExecuteParams = {
body?: BodyInit | object;
headers?: {
[key: string]: any;
};
method: string;
agent?: http.Agent | https.Agent;
};