/** * Http状态错误 */ export declare const HttpError = "HttpError"; /** * 请求过程中报错 */ export declare const FetchError = "FetchError"; /** * 请求过程中报错 */ export declare const TimeoutError = "TimeoutError"; /** * 请求过程中报错 */ export declare const UnKnownError = "UnKnownError"; export declare const ResponseError: { /** * Http状态错误 */ HttpError: string; /** * 请求过程中报错 */ FetchError: string; /** * 超时取消 */ TimeoutError: string; /** * 未知错误 */ UnKnownError: string; }; /** 全局下载进度 */ export declare const ON_GLOBAL_DOWNLOAD_PROGRESS: unique symbol; /** 取消请求常量 */ export declare const ABORT_CONTROLLER: unique symbol;