From ef63071d04b5c68fec53bddcf0b84dd7b77f6df5 Mon Sep 17 00:00:00 2001 From: wu-liushuan Date: Tue, 9 Sep 2025 10:42:41 +0800 Subject: [PATCH] =?UTF-8?q?0702=20getPermissionUsedTypeInfos=20=E5=85=81?= =?UTF-8?q?=E8=AE=B8token=E4=B8=BAnull?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: wu-liushuan Change-Id: I85e077f3e2681a9729e43a30f185423d6f05f59f --- api/@ohos.privacyManager.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/@ohos.privacyManager.d.ts b/api/@ohos.privacyManager.d.ts index da3c676ade..73810c2497 100644 --- a/api/@ohos.privacyManager.d.ts +++ b/api/@ohos.privacyManager.d.ts @@ -384,7 +384,7 @@ declare namespace privacyManager { * @since arkts {'1.1':'12', '1.2':'20'} * @arkts 1.1&1.2 */ - function getPermissionUsedTypeInfos(tokenId?: int, permissionName?: Permissions): Promise>; + function getPermissionUsedTypeInfos(tokenId?: int | null, permissionName?: Permissions): Promise>; /** * Sets the toggle state of permission access records for the current user. -- Gitee