summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/npm/node_modules/funcaptcha/lib/http.d.ts
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;