blob: 5c2e9393db50e3b6c4dc0fc49fa2e9d574a98d70 (
plain) (
blame)
1
2
3
4
5
6
7
|
/// <reference types="node" />
import { RequestOptions } from "undici/types/dispatcher";
declare function req(url: string, options: RequestOptions, proxy?: string): Promise<{
headers: import("undici/types/header").IncomingHttpHeaders;
body: Buffer;
}>;
export default req;
|