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