mirror of
https://github.com/xuxiaobo-bobo/boda_jsEnv.git
synced 2025-04-22 23:44:23 +08:00
15 lines
295 B
Plaintext
15 lines
295 B
Plaintext
// @flow
|
|
// Generated using flowgen2
|
|
|
|
import type {HttpVerb} from 'http-basic';
|
|
import type {Options} from './Options';
|
|
import {ResponsePromise} from './ResponsePromise';
|
|
|
|
type RequestFn = (
|
|
method: HttpVerb,
|
|
url: string,
|
|
options?: Options,
|
|
) => ResponsePromise;
|
|
|
|
export type {RequestFn};
|