From 4138eb979cce6d5d0818ce80683403d2734771a5 Mon Sep 17 00:00:00 2001 From: WangSiyuan Date: Wed, 21 Apr 2021 15:48:03 +0800 Subject: [PATCH] fix(type): PutExtra constructor progressCallback --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 1abb9b01..254df3a5 100644 --- a/index.d.ts +++ b/index.d.ts @@ -305,7 +305,7 @@ export declare namespace resume_up { * @param resumeRecordFile * @param progressCallback */ - constructor(fname?: string, params?: any, mimeType?: string, resumeRecordFile?: string, progressCallback?: (data: any) => void); + constructor(fname?: string, params?: any, mimeType?: string, resumeRecordFile?: string, progressCallback?: (uploadBytes: number, totalBytes: number) => void); } }