From c1f9b864b594bbd146e2fda460a76ef76fb0bf5a Mon Sep 17 00:00:00 2001 From: r00447448 Date: Thu, 30 Mar 2023 10:19:23 +0800 Subject: [PATCH] =?UTF-8?q?accessibility.d.ts=E6=96=87=E4=BB=B6=E8=A7=84?= =?UTF-8?q?=E8=8C=83=E6=95=B4=E6=94=B9=20Signed-off-by:=20ranzhiqiang=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- interfaces/kits/js/@ohos.accessibility.d.ts | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/interfaces/kits/js/@ohos.accessibility.d.ts b/interfaces/kits/js/@ohos.accessibility.d.ts index 6bba9495..fb94ff84 100644 --- a/interfaces/kits/js/@ohos.accessibility.d.ts +++ b/interfaces/kits/js/@ohos.accessibility.d.ts @@ -22,7 +22,6 @@ import { Callback } from './basic'; * @namespace accessibility * @syscap SystemCapability.BarrierFree.Accessibility.Core * @since 7 - * @name Accessibility */ declare namespace accessibility { /** @@ -64,10 +63,10 @@ declare namespace accessibility { /** * The change type of the windowsChange event. + * It's used when received the {@code windowsChange} event. * * @syscap SystemCapability.BarrierFree.Accessibility.Core * @since 7 - * @note It's used when received the {@code windowsChange} event. */ type WindowUpdateType = 'add' | 'remove' | 'bounds' | 'active' | 'focus'; @@ -81,15 +80,15 @@ declare namespace accessibility { /** * The ability that accessibility subsystem support. - * - * @syscap SystemCapability.BarrierFree.Accessibility.Core - * @since 7 - * @note touchExplorer: Describes the capability to talkback. + * touchExplorer: Describes the capability to talkback. * magnification: Describes the capability to request to control the display magnification. * gesturesSimulation: Describes the capability to request to simulate the gesture. * windowContent: Describes the capability to search for the content of the active window. * filterKeyEvents: Describes the capability to request to filter key events. * fingerprintGesture: Describes the capability to request to fingerprint gesture. + * + * @syscap SystemCapability.BarrierFree.Accessibility.Core + * @since 7 */ type Capability = 'retrieve' | 'touchGuide' | 'keyEventObserver' | 'zoom' | 'gesture'; @@ -98,7 +97,6 @@ declare namespace accessibility { * * @syscap SystemCapability.BarrierFree.Accessibility.Core * @since 7 - * @note The granularity of text move. */ type TextMoveUnit = 'char' | 'word' | 'line' | 'page' | 'paragraph';