/** * 检查是否取消请求错误, 小程序错误码`9`为取消请求. * * @param error 请求过程中的错误对象. * @returns * @see https://opendocs.alipay.com/mini/api/owycmh#%E9%94%99%E8%AF%AF%E7%A0%81 */ declare function isCanceled(error: unknown): boolean; export default isCanceled;