From b3d7dd8b9c71ce4677af3654e158d556f178271b Mon Sep 17 00:00:00 2001 From: zaki Date: Wed, 16 Nov 2022 19:51:14 +0800 Subject: [PATCH] fix jsdoc check problems in accessibility Signed-off-by: zaki Change-Id: I5dd0f98fdc4f650447595448a5f37272a04f6a28 --- api/@ohos.accessibility.d.ts | 17 ----------------- ...plication.AccessibilityExtensionAbility.d.ts | 2 +- 2 files changed, 1 insertion(+), 18 deletions(-) diff --git a/api/@ohos.accessibility.d.ts b/api/@ohos.accessibility.d.ts index 8b5b372e0a..5ca5f8250e 100644 --- a/api/@ohos.accessibility.d.ts +++ b/api/@ohos.accessibility.d.ts @@ -21,7 +21,6 @@ import { Callback } from './basic'; * @name Accessibility * @since 7 * @syscap SystemCapability.BarrierFree.Accessibility.Core - * @import basic,abilityInfo */ declare namespace accessibility { /** @@ -49,12 +48,6 @@ declare namespace accessibility { /** * The type of the accessibility event. - * @note windowsChange - * @note windowContentChange - * @note windowStateChange - * @note announcement - * @note notificationChange - * @note textTraversedAtMove * @syscap SystemCapability.BarrierFree.Accessibility.Core * @since 7 */ @@ -64,7 +57,6 @@ declare namespace accessibility { /** * The change type of the windowsChange event. - * @note It's used when received the {@code windowsChange} event. * @syscap SystemCapability.BarrierFree.Accessibility.Core * @since 7 */ @@ -79,12 +71,6 @@ declare namespace accessibility { /** * The ability that accessibility subsystem support. - * @note 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 */ @@ -92,7 +78,6 @@ declare namespace accessibility { /** * The granularity of text move. - * @note The granularity of text move. * @syscap SystemCapability.BarrierFree.Accessibility.Core * @since 7 */ @@ -416,7 +401,6 @@ declare namespace accessibility { /** * The content list. - * @note * @since 7 */ contents?: Array; @@ -447,7 +431,6 @@ declare namespace accessibility { /** * The total of the items. - * @note talkback used it when scroll. * @since 7 */ itemCount?: number; diff --git a/api/@ohos.application.AccessibilityExtensionAbility.d.ts b/api/@ohos.application.AccessibilityExtensionAbility.d.ts index ad77b73993..7a6c8527d3 100644 --- a/api/@ohos.application.AccessibilityExtensionAbility.d.ts +++ b/api/@ohos.application.AccessibilityExtensionAbility.d.ts @@ -67,7 +67,7 @@ declare interface AccessibilityEvent { } /** - * Indicates the gusture type. + * Indicates the gesture type. * @since 9 * @syscap SystemCapability.BarrierFree.Accessibility.Core */ -- Gitee