mirror of
https://github.com/xuxiaobo-bobo/boda_jsEnv.git
synced 2025-04-22 22:21:32 +08:00
20 lines
444 B
Plaintext
20 lines
444 B
Plaintext
// @flow
|
|
// Generated using flowgen2
|
|
|
|
import type {HttpVerb} from 'then-request';
|
|
import type {Response} from 'then-request';
|
|
import {URL} from 'url';
|
|
import {FormData} from './FormData';
|
|
import type {Options} from './Options';
|
|
export type {HttpVerb};
|
|
export type {Response};
|
|
export type {Options};
|
|
export {FormData};
|
|
|
|
declare function request(
|
|
method: HttpVerb,
|
|
url: string | URL,
|
|
options?: Options,
|
|
): Response;
|
|
export default request;
|