mirror of
https://gitee.com/dgflash/oops-framework.git
synced 2026-07-03 07:34:36 +08:00
10 lines
530 B
TypeScript
10 lines
530 B
TypeScript
/*! MIT License © Sindre Sorhus */
|
|
import type { KyInstance } from './types/ky.js';
|
|
declare const ky: KyInstance;
|
|
export default ky;
|
|
export { Options, NormalizedOptions, RetryOptions, SearchParamsOption, DownloadProgress, } from './types/options.js';
|
|
export { Hooks, BeforeRequestHook, BeforeRetryHook, BeforeErrorHook, AfterResponseHook, } from './types/hooks.js';
|
|
export { ResponsePromise } from './types/response.js';
|
|
export { HTTPError } from './errors/HTTPError.js';
|
|
export { TimeoutError } from './errors/TimeoutError.js';
|