1
2
3
4
5
6
7
8
9
10
11
12
13
14
| // @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};
|
|