From 1af8a07c4199f8cc282f81d8c906afd7200a82b9 Mon Sep 17 00:00:00 2001 From: wangcaoyu Date: Fri, 20 Jun 2025 01:18:52 +0800 Subject: [PATCH] =?UTF-8?q?api=E6=A0=BC=E5=BC=8F=E5=8C=96=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: wangcaoyu --- api/@system.configuration.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/@system.configuration.d.ts b/api/@system.configuration.d.ts index 5249ca130b..b350c300f7 100644 --- a/api/@system.configuration.d.ts +++ b/api/@system.configuration.d.ts @@ -69,7 +69,7 @@ export interface LocaleResponse { * ltr: The text direction is from left to right. * rtl: The text direction is from right to left. * - * @type { "ltr" | "rtl" } + * @type { 'ltr' | 'rtl' } * @syscap SystemCapability.ArkUI.ArkUI.Lite * @since 3 */ @@ -78,12 +78,12 @@ export interface LocaleResponse { * ltr: The text direction is from left to right. * rtl: The text direction is from right to left. * - * @type { "ltr" | "rtl" } + * @type { 'ltr' | 'rtl' } * @syscap SystemCapability.ArkUI.ArkUI.Lite * @atomicservice * @since 12 */ - dir: "ltr" | "rtl"; + dir: 'ltr' | 'rtl'; } /** -- Gitee