wzp
2021-05-13 7d694a9113118daec5be7ac224dab46a3b20f106
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};