mirror of
https://github.com/xuxiaobo-bobo/boda_jsEnv.git
synced 2025-04-23 04:04:25 +08:00
6 lines
247 B
TypeScript
6 lines
247 B
TypeScript
import { HttpVerb } from 'http-basic';
|
|
import { Options } from './Options';
|
|
import { ResponsePromise } from './ResponsePromise';
|
|
declare type RequestFn = (method: HttpVerb, url: string, options?: Options) => ResponsePromise;
|
|
export { RequestFn };
|