From 52134fc2616ddc7ede92b022c1ed7af11e90d9b4 Mon Sep 17 00:00:00 2001 From: wangzhongjie Date: Fri, 9 May 2025 09:52:34 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=8F=90=E4=BA=A4=E4=B8=80=E4=B8=AA?= =?UTF-8?q?=E5=A3=B0=E6=98=8E=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ohos/dts/@ohos.rtsprecord.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ohos/dts/@ohos.rtsprecord.d.ts b/ohos/dts/@ohos.rtsprecord.d.ts index ec3254e..5bc13c8 100644 --- a/ohos/dts/@ohos.rtsprecord.d.ts +++ b/ohos/dts/@ohos.rtsprecord.d.ts @@ -53,8 +53,8 @@ declare namespace record { endRecordVideo(id:number): RtspResult; getVideoSnapshot(context:object,uri:string,fileName:string,dir:string,needBase64:boolean,callback: AsyncCallback): void; getVideoSnapshot(context:object,uri:string,fileName:string,dir:string): Promise; - detectVideoSnapshotSize(uri:string,fileName:string,callback: AsyncCallback): void; - detectVideoSnapshotSize(uri:string,fileName:string): Promise; + detectVideoSnapshotSize(uri:string,fileName:string,needBase64:boolean,callback: AsyncCallback): void; + detectVideoSnapshotSize(uri:string,fileName:string,needBase64:boolean): Promise; } } export default record;