datasquirel/package-shared/functions/backend/httpsRequest.d.ts
Benjamin Toby c49513c189 Updates
2024-12-06 11:44:26 +01:00

12 lines
299 B
TypeScript

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;