12 lines
299 B
TypeScript
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;
|