From 3303365ffca6ea152eea21539e706eed8a42abcd Mon Sep 17 00:00:00 2001 From: Mupceet Date: Fri, 18 Mar 2022 15:38:52 +0800 Subject: [PATCH] change interface comment Signed-off-by: Mupceet --- interfaces/kits/js/@ohos.accessibility.d.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/interfaces/kits/js/@ohos.accessibility.d.ts b/interfaces/kits/js/@ohos.accessibility.d.ts index fb51f2c72..4e38c4796 100644 --- a/interfaces/kits/js/@ohos.accessibility.d.ts +++ b/interfaces/kits/js/@ohos.accessibility.d.ts @@ -245,6 +245,9 @@ declare namespace accessibility { fontScale: number; /** * Indicates the font color of captions. + * number: 0xFF112233(0xAARRGGBB ) + * string: #012F(#RGBA) #001122FF(#RRGGBBAA) #012(#RGB) #001122(#RRGGBB) + * red/green/blue/black/white/gray */ fontColor: number | string; /** @@ -253,10 +256,16 @@ declare namespace accessibility { fontEdgeType: CaptionsFontEdgeType; /** * Indicates the background color of captions. + * number: 0xFF112233(0xAARRGGBB ) + * string: #012F(#RGBA) #001122FF(#RRGGBBAA) #012(#RGB) #001122(#RRGGBB) + * red/green/blue/black/white/gray */ backgroundColor: number | string; /** * Indicates the window color of captions. + * number: 0xFF112233(0xAARRGGBB ) + * string: #012F(#RGBA) #001122FF(#RRGGBBAA) #012(#RGB) #001122(#RRGGBB) + * red/green/blue/black/white/gray */ windowColor: number | string; }