From 54cc70509c8ea1da9ec95b95bf81b2c6b774d858 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=98=E5=BC=BA=E6=A0=87?= Date: Tue, 22 Mar 2022 08:24:34 +0000 Subject: [PATCH] fix issue Signed-off-by: panqiangbiao --- api/@ohos.fileManager.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/@ohos.fileManager.d.ts b/api/@ohos.fileManager.d.ts index b349c26721..94d7449410 100644 --- a/api/@ohos.fileManager.d.ts +++ b/api/@ohos.fileManager.d.ts @@ -45,7 +45,7 @@ declare namespace filemanager { * @systemapi */ declare function listFile(path: string, type: string, options?: {dev?: DevInfo, offset?: number, count?: number}): Promise; -declare function listFile(path: string, type: string, options?: {dev?: DevInfo, offset?: number, count?: number}, AsyncCallback): void; +declare function listFile(path: string, type: string, options?: {dev?: DevInfo, offset?: number, count?: number}, callback: AsyncCallback): void; /** * getRoot. -- Gitee