mirror of
https://github.com/xuxiaobo-bobo/boda_jsEnv.git
synced 2025-04-22 23:44:23 +08:00
9 lines
345 B
TypeScript
9 lines
345 B
TypeScript
/// <reference types="node" />
|
|
import { HttpVerb, Response } from 'then-request';
|
|
import { URL } from 'url';
|
|
import { FormData } from './FormData';
|
|
import { Options } from './Options';
|
|
export { HttpVerb, Response, Options };
|
|
export { FormData };
|
|
export default function request(method: HttpVerb, url: string | URL, options?: Options): Response;
|