xuxiaobo-bobo 842b34b5ca 0218
2024-02-18 15:40:48 +08:00

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};