From ef75ee56a11daa786ddd1892cac8daddbd45e691 Mon Sep 17 00:00:00 2001 From: qinghuawen <1427556481@qq.com> Date: Sat, 30 Aug 2025 14:51:20 +0800 Subject: [PATCH] settings number to int 0728 Signed-off-by: qinghuawen <1427556481@qq.com> --- api/@ohos.settings.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/@ohos.settings.d.ts b/api/@ohos.settings.d.ts index 36cd56566a..8c68b685e2 100644 --- a/api/@ohos.settings.d.ts +++ b/api/@ohos.settings.d.ts @@ -188,7 +188,7 @@ declare namespace settings { * @syscap SystemCapability.Applications.Settings.Core * @since 7 */ - const AUTO_SCREEN_BRIGHTNESS_MODE: number + const AUTO_SCREEN_BRIGHTNESS_MODE: int /** * Indicates the value of {@code AUTO_SCREEN_BRIGHTNESS} when manual screen brightness adjustment is used. @@ -197,7 +197,7 @@ declare namespace settings { * @syscap SystemCapability.Applications.Settings.Core * @since 7 */ - const MANUAL_SCREEN_BRIGHTNESS_MODE: number + const MANUAL_SCREEN_BRIGHTNESS_MODE: int /** * Indicates the duration that the device waits before going to sleep after a period of inactivity, in -- Gitee