datasquirel/package-shared/functions/backend/httpsRequest.d.ts

12 lines
299 B
TypeScript
Raw Normal View History

2024-12-06 10:44:26 +00:00
declare function _exports({ url, method, hostname, path, headers, body, port, scheme, }: {
scheme?: string;
url?: string;
method?: string;
hostname?: string;
path?: string;
port?: number | string;
headers?: object;
body?: object;
}): Promise<any>;
export = _exports;