mirror of
https://github.com/xuxiaobo-bobo/boda_jsEnv.git
synced 2025-04-22 22:21:32 +08:00
8 lines
297 B
TypeScript
8 lines
297 B
TypeScript
/// <reference types="node" />
|
|
import { URL } from 'url';
|
|
import { HttpVerb, Response } from 'then-request';
|
|
import { Options } from './Options';
|
|
declare const fd: any;
|
|
export { fd as FormData };
|
|
export default function doRequest(method: HttpVerb, url: string | URL, options?: Options): Response;
|