From 1e3b877fb74902c1b32e94a82e777a782805ef8f Mon Sep 17 00:00:00 2001 From: huawei <3365582168@qq.com> Date: Sat, 8 Jun 2024 11:18:42 +0800 Subject: [PATCH 01/18] =?UTF-8?q?error=5Fcode=20=E6=A3=80=E6=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../checker/config/api_check_config.json | 3 +- .../coreImpl/checker/src/api_check_plugin.ts | 19 +++++++++++ .../coreImpl/checker/src/check_error_code.ts | 32 +++++++++++++++++++ .../src/typedef/checker/result_type.ts | 8 +++-- 4 files changed, 58 insertions(+), 4 deletions(-) create mode 100644 build-tools/dts_parser/src/coreImpl/checker/src/check_error_code.ts diff --git a/build-tools/dts_parser/src/coreImpl/checker/config/api_check_config.json b/build-tools/dts_parser/src/coreImpl/checker/config/api_check_config.json index 1295284a8b..ebfc0be851 100644 --- a/build-tools/dts_parser/src/coreImpl/checker/config/api_check_config.json +++ b/build-tools/dts_parser/src/coreImpl/checker/config/api_check_config.json @@ -116,7 +116,8 @@ "API_DOC_GLOBAL_02": "JSDoc tag validity verification failed. Please confirm if the [kit] tag is missing.", "API_DOC_JSDOC_01": "Jsdoc needs to be added to the current API.", "API_DOC_JSDOC_02": "JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "API_DOC_JSDOC_03": "JSDoc has chinese." + "API_DOC_JSDOC_03": "JSDoc has chinese.", + "API_ERROR_ERROR_CODE": "The generic error code does not contain the current error code." }, "DEFINE": { "API_DEFINE_UNALLOWABLE_01": "Illegal [any] keyword used in the API.", diff --git a/build-tools/dts_parser/src/coreImpl/checker/src/api_check_plugin.ts b/build-tools/dts_parser/src/coreImpl/checker/src/api_check_plugin.ts index 9ffcd5a7d9..ef2ea3a63a 100644 --- a/build-tools/dts_parser/src/coreImpl/checker/src/api_check_plugin.ts +++ b/build-tools/dts_parser/src/coreImpl/checker/src/api_check_plugin.ts @@ -42,6 +42,7 @@ import { EventMethodData } from '../../../typedef/checker/event_method_check_int import { ApiChangeCheck } from './check_api_diff'; import { TagInheritCheck } from './tag_inherit_check'; import { ChineseCheck } from "./check_chinese"; +import {CheckErrorCode} from "./check_error_code"; export class Check { /** @@ -130,6 +131,8 @@ export class Check { const namingCheckResult: ErrorTagFormat = ApiNamingCheck.namingCheck(singleApi); // check jsdoc chinese const chineseCheckResult: ErrorTagFormat = ChineseCheck.checkChinese(apiJsdoc); + // check error code + const errorCodeResult: ErrorTagFormat = CheckErrorCode.checkErrorCode(apiJsdoc); // tags name check const tagNamseCheckResult: ErrorTagFormat = TagNameCheck.tagNameCheck(apiJsdoc); // tags inherit check @@ -222,6 +225,22 @@ export class Check { compositiveLocalResult ); } + if (!errorCodeResult.state) { + AddErrorLogs.addAPICheckErrorLogs( + ErrorID.ERROR_ERROR_CODE, + ErrorLevel.MIDDLE, + singleApi.getFilePath(), + singleApi.getPos(), + ErrorType.ERROR_ERROR_CODE, + LogType.LOG_JSDOC, + toNumber(apiJsdoc.since), + singleApi.getApiName(), + singleApi.getDefinedText(), + errorCodeResult.errorInfo, + compositiveResult, + compositiveLocalResult + ); + } if (!tagInheritCheckResult.state) { AddErrorLogs.addAPICheckErrorLogs( ErrorID.WRONG_SCENE_ID, diff --git a/build-tools/dts_parser/src/coreImpl/checker/src/check_error_code.ts b/build-tools/dts_parser/src/coreImpl/checker/src/check_error_code.ts new file mode 100644 index 0000000000..a1b123ce65 --- /dev/null +++ b/build-tools/dts_parser/src/coreImpl/checker/src/check_error_code.ts @@ -0,0 +1,32 @@ +import {Comment} from "../../../typedef/parser/Comment"; +import {ErrorMessage, ErrorTagFormat} from "../../../typedef/checker/result_type"; +import {CommonFunctions} from "../../../utils/checkUtils"; + +export class CheckErrorCode { + + static errorCodeList: number[] = [201, 202, 203, 301, 401, 501, 502, 801, 901]; + + static isArrayNotEmpty(arr: any): boolean { + return Array.isArray(arr) && arr.length > 0; + } + + static hasNumberInArray(arr1: number[], arr2: number[]): boolean { + return arr1.every(num => arr2.includes(num)); + } + + static checkErrorCode(apiJsdoc: Comment.JsDocInfo): ErrorTagFormat { + const checkResult: ErrorTagFormat = { + state: true, + errorInfo: '', + }; + + const errorCodes = apiJsdoc.errorCodes.filter(number => number > 100 && number < 1000);; + if (this.isArrayNotEmpty(errorCodes)) { + if (!this.hasNumberInArray(errorCodes, this.errorCodeList)) { + checkResult.state = false; + checkResult.errorInfo = ErrorMessage.ERROR_ERROR_CODE; + } + } + return checkResult; + } +} \ No newline at end of file diff --git a/build-tools/dts_parser/src/typedef/checker/result_type.ts b/build-tools/dts_parser/src/typedef/checker/result_type.ts index e575fee974..8dbb7e58a5 100644 --- a/build-tools/dts_parser/src/typedef/checker/result_type.ts +++ b/build-tools/dts_parser/src/typedef/checker/result_type.ts @@ -35,7 +35,8 @@ export enum ErrorType { API_CHANGE_ERRORS = 'api change errors', TS_SYNTAX_ERROR = 'TS syntax error', NO_JSDOC = 'No jsdoc', - JSDOC_HAS_CHINESE = 'JSDOC_HAS_CHINESE' + JSDOC_HAS_CHINESE = 'JSDOC_HAS_CHINESE', + ERROR_ERROR_CODE = 'error_error_code' } /** @@ -58,7 +59,8 @@ export enum ErrorID { API_CHANGE_ERRORS_ID = 12, TS_SYNTAX_ERROR_ID = 13, NO_JSDOC_ID = 14, - JSDOC_HAS_CHINESE = 15 + JSDOC_HAS_CHINESE = 15, + ERROR_ERROR_CODE } /** @@ -150,7 +152,7 @@ export enum ErrorMessage { ERROR_NO_JSDOC = 'Jsdoc needs to be added to the current API.', ERROR_NO_JSDOC_TAG = 'add tags to the Jsdoc.', ERROR_HAS_CHINESE= 'Jsdoc has chinese.', - + ERROR_ERROR_CODE = 'The generic error code does not contain the current error code.' } export const incompatibleApiDiffTypes: Map = new Map([ From 8b57180fad8fc07853d8e0ac617bf5bd66135843 Mon Sep 17 00:00:00 2001 From: huawei <3365582168@qq.com> Date: Sat, 8 Jun 2024 14:41:43 +0800 Subject: [PATCH 02/18] =?UTF-8?q?error=5Fcode=20=E6=A3=80=E6=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dts_parser/src/coreImpl/checker/src/check_error_code.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-tools/dts_parser/src/coreImpl/checker/src/check_error_code.ts b/build-tools/dts_parser/src/coreImpl/checker/src/check_error_code.ts index a1b123ce65..0a0215f00c 100644 --- a/build-tools/dts_parser/src/coreImpl/checker/src/check_error_code.ts +++ b/build-tools/dts_parser/src/coreImpl/checker/src/check_error_code.ts @@ -20,7 +20,7 @@ export class CheckErrorCode { errorInfo: '', }; - const errorCodes = apiJsdoc.errorCodes.filter(number => number > 100 && number < 1000);; + const errorCodes = apiJsdoc.errorCodes.filter(number => number >= 100 && number < 1000);; if (this.isArrayNotEmpty(errorCodes)) { if (!this.hasNumberInArray(errorCodes, this.errorCodeList)) { checkResult.state = false; From a7de9617f608596f9f561ea54304233ab1ecb7df Mon Sep 17 00:00:00 2001 From: huawei <3365582168@qq.com> Date: Mon, 17 Jun 2024 14:31:03 +0800 Subject: [PATCH 03/18] =?UTF-8?q?=E5=86=B2=E7=AA=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/.gitignore | 5 - .idea/vcs.xml | 6 - .idea/workspace.xml | 112 + build-tools/dts_parser/check_0_0.json | 1 - build-tools/dts_parser/result.json | 147710 ----------------------- build-tools/mdFiles.txt | 816 - 6 files changed, 112 insertions(+), 148538 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml delete mode 100644 build-tools/dts_parser/check_0_0.json delete mode 100644 build-tools/dts_parser/result.json delete mode 100644 build-tools/mdFiles.txt diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index b58b603fea..0000000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1ddfbb..0000000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000000..7590271ff7 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,112 @@ + + + + + + + + + + + + { + "associatedIndex": 0 +} + + + + + + + { + "keyToString": { + "RunOnceActivity.OpenProjectViewOnStart": "true", + "RunOnceActivity.ShowReadmeOnStart": "true", + "git-widget-placeholder": "master", + "ignore_missing_gitignore": "true", + "node.js.detected.package.eslint": "true", + "node.js.selected.package.eslint": "(autodetect)", + "node.js.selected.package.tslint": "(autodetect)", + "nodejs_package_manager_path": "npm", + "ts.external.directory.path": "/Users/huawei/interface_sdk-js-micrili/build-tools/dts_parser/node_modules/typescript/lib", + "vue.rearranger.settings.migration": "true" + } +} + + + + + 1718589109366 + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/build-tools/dts_parser/check_0_0.json b/build-tools/dts_parser/check_0_0.json deleted file mode 100644 index 66dc9051da..0000000000 --- a/build-tools/dts_parser/check_0_0.json +++ /dev/null @@ -1 +0,0 @@ -undefined \ No newline at end of file diff --git a/build-tools/dts_parser/result.json b/build-tools/dts_parser/result.json deleted file mode 100644 index 0a761d6faf..0000000000 --- a/build-tools/dts_parser/result.json +++ /dev/null @@ -1,147710 +0,0 @@ -[ - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/action_sheet.d.ts", - "codeContextStaerLine": "624", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillDismiss?: Callback;", - "mainBuggyLine": "624" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/action_sheet.d.ts", - "codeContextStaerLine": "634", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "transition?: TransitionEffect;", - "mainBuggyLine": "634" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/action_sheet.d.ts", - "codeContextStaerLine": "644", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "cornerRadius?: Dimension | BorderRadiuses | LocalizedBorderRadiuses;", - "mainBuggyLine": "644" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/action_sheet.d.ts", - "codeContextStaerLine": "654", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "width?: Dimension;", - "mainBuggyLine": "654" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/action_sheet.d.ts", - "codeContextStaerLine": "664", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "height?: Dimension;", - "mainBuggyLine": "664" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/action_sheet.d.ts", - "codeContextStaerLine": "674", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "borderWidth?: Dimension | EdgeWidths | LocalizedEdgeWidths;", - "mainBuggyLine": "674" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/action_sheet.d.ts", - "codeContextStaerLine": "684", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "borderColor?: ResourceColor | EdgeColors | LocalizedEdgeColors;", - "mainBuggyLine": "684" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/action_sheet.d.ts", - "codeContextStaerLine": "694", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "borderStyle?: BorderStyle | EdgeStyles;", - "mainBuggyLine": "694" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/action_sheet.d.ts", - "codeContextStaerLine": "704", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "shadow?: ShadowOptions | ShadowStyle;", - "mainBuggyLine": "704" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/alert_dialog.d.ts", - "codeContextStaerLine": "511", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "primary?: boolean;", - "mainBuggyLine": "511" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/alert_dialog.d.ts", - "codeContextStaerLine": "847", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillDismiss?: Callback;", - "mainBuggyLine": "847" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/alert_dialog.d.ts", - "codeContextStaerLine": "857", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "transition?: TransitionEffect;", - "mainBuggyLine": "857" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/alert_dialog.d.ts", - "codeContextStaerLine": "867", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "cornerRadius?: Dimension | BorderRadiuses | LocalizedBorderRadiuses;", - "mainBuggyLine": "867" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/alert_dialog.d.ts", - "codeContextStaerLine": "877", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "width?: Dimension;", - "mainBuggyLine": "877" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/alert_dialog.d.ts", - "codeContextStaerLine": "887", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "height?: Dimension;", - "mainBuggyLine": "887" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/alert_dialog.d.ts", - "codeContextStaerLine": "897", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "borderWidth?: Dimension | EdgeWidths | LocalizedEdgeWidths;", - "mainBuggyLine": "897" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/alert_dialog.d.ts", - "codeContextStaerLine": "907", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "borderColor?: ResourceColor | EdgeColors | LocalizedEdgeColors;", - "mainBuggyLine": "907" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/alert_dialog.d.ts", - "codeContextStaerLine": "917", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "borderStyle?: BorderStyle | EdgeStyles;", - "mainBuggyLine": "917" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/alert_dialog.d.ts", - "codeContextStaerLine": "927", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "shadow?: ShadowOptions | ShadowStyle;", - "mainBuggyLine": "927" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/alert_dialog.d.ts", - "codeContextStaerLine": "954", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface AlertDialogParamWithConfirm", - "mainBuggyLine": "954" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/alert_dialog.d.ts", - "codeContextStaerLine": "1197", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface AlertDialogParamWithButtons", - "mainBuggyLine": "1197" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/alert_dialog.d.ts", - "codeContextStaerLine": "1590", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface AlertDialogParamWithOptions", - "mainBuggyLine": "1590" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/alphabet_indexer.d.ts", - "codeContextStaerLine": "99", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "START", - "mainBuggyLine": "99" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/alphabet_indexer.d.ts", - "codeContextStaerLine": "108", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "END", - "mainBuggyLine": "108" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/alphabet_indexer.d.ts", - "codeContextStaerLine": "204", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onSelected(callback: (index: number) => void): AlphabetIndexerAttribute;", - "mainBuggyLine": "204" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/alphabet_indexer.d.ts", - "codeContextStaerLine": "846", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableHapticFeedback(value: boolean): AlphabetIndexerAttribute;", - "mainBuggyLine": "846" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum BadgePosition", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "RightTop", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "118", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Right", - "mainBuggyLine": "118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "150", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Left", - "mainBuggyLine": "150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "187", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface BadgeStyle", - "mainBuggyLine": "187" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "222", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "color?: ResourceColor;", - "mainBuggyLine": "222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "258", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontSize?: number | string;", - "mainBuggyLine": "258" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "294", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "badgeSize?: number | string;", - "mainBuggyLine": "294" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "330", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "badgeColor?: ResourceColor;", - "mainBuggyLine": "330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "349", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "borderColor?: ResourceColor;", - "mainBuggyLine": "349" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "368", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "borderWidth?: Length;", - "mainBuggyLine": "368" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "387", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fontWeight?: number | FontWeight | string;", - "mainBuggyLine": "387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "424", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface BadgeParam", - "mainBuggyLine": "424" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "459", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "position?: BadgePosition | Position;", - "mainBuggyLine": "459" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "495", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "style: BadgeStyle;", - "mainBuggyLine": "495" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "532", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface BadgeParamWithNumber", - "mainBuggyLine": "532" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "532", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface BadgeParamWithNumber", - "mainBuggyLine": "532" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "567", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "count: number;", - "mainBuggyLine": "567" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "603", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "maxCount?: number;", - "mainBuggyLine": "603" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "640", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface BadgeParamWithString", - "mainBuggyLine": "640" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "640", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface BadgeParamWithString", - "mainBuggyLine": "640" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "675", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "value: string;", - "mainBuggyLine": "675" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "712", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface BadgeInterface", - "mainBuggyLine": "712" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "763", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(value: BadgeParamWithNumber): BadgeAttribute;", - "mainBuggyLine": "763" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "815", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(value: BadgeParamWithString): BadgeAttribute;", - "mainBuggyLine": "815" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "852", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class BadgeAttribute", - "mainBuggyLine": "852" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "884", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Badge: BadgeInterface;", - "mainBuggyLine": "884" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts", - "codeContextStaerLine": "916", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const BadgeInstance: BadgeAttribute;", - "mainBuggyLine": "916" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/blank.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface BlankInterface", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/blank.d.ts", - "codeContextStaerLine": "94", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(min?: number | string): BlankAttribute;", - "mainBuggyLine": "94" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/blank.d.ts", - "codeContextStaerLine": "131", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class BlankAttribute", - "mainBuggyLine": "131" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/blank.d.ts", - "codeContextStaerLine": "170", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "color(value: ResourceColor): BlankAttribute;", - "mainBuggyLine": "170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/blank.d.ts", - "codeContextStaerLine": "203", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Blank: BlankInterface;", - "mainBuggyLine": "203" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/blank.d.ts", - "codeContextStaerLine": "235", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const BlankInstance: BlankAttribute;", - "mainBuggyLine": "235" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum ButtonType", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Capsule", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "118", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Circle", - "mainBuggyLine": "118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "150", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Normal", - "mainBuggyLine": "150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "172", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum ButtonStyleMode", - "mainBuggyLine": "172" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "190", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "NORMAL = 0", - "mainBuggyLine": "190" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "209", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "EMPHASIZED = 1", - "mainBuggyLine": "209" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "228", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "TEXTUAL = 2", - "mainBuggyLine": "228" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "272", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type ButtonTriggerClickCallback = (xPos: number, yPos: number) => void;", - "mainBuggyLine": "272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "272", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type ButtonTriggerClickCallback = (xPos: number, yPos: number) => void;", - "mainBuggyLine": "272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "272", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [2] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "declare type ButtonTriggerClickCallback = (xPos: number, yPos: number) => void;", - "mainBuggyLine": "272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "272", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type ButtonTriggerClickCallback = (xPos: number, yPos: number) => void;", - "mainBuggyLine": "272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "283", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface ButtonConfiguration", - "mainBuggyLine": "283" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "334", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum ControlSize", - "mainBuggyLine": "334" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "352", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "SMALL = 'small'", - "mainBuggyLine": "352" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "371", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "NORMAL = 'normal'", - "mainBuggyLine": "371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "408", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface ButtonOptions", - "mainBuggyLine": "408" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "443", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "type?: ButtonType;", - "mainBuggyLine": "443" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "479", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "stateEffect?: boolean;", - "mainBuggyLine": "479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "502", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "buttonStyle?: ButtonStyleMode;", - "mainBuggyLine": "502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "525", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "controlSize?: ControlSize;", - "mainBuggyLine": "525" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "537", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "role?: ButtonRole;", - "mainBuggyLine": "537" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "574", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface ButtonInterface", - "mainBuggyLine": "574" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "609", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(): ButtonAttribute;", - "mainBuggyLine": "609" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "649", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(options: ButtonOptions): ButtonAttribute;", - "mainBuggyLine": "649" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "693", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(label: ResourceStr, options?: ButtonOptions): ButtonAttribute;", - "mainBuggyLine": "693" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "863", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class ButtonAttribute", - "mainBuggyLine": "863" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "902", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "type(value: ButtonType): ButtonAttribute;", - "mainBuggyLine": "902" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "942", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "stateEffect(value: boolean): ButtonAttribute;", - "mainBuggyLine": "942" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "965", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "buttonStyle(value: ButtonStyleMode): ButtonAttribute;", - "mainBuggyLine": "965" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "988", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "controlSize(value: ControlSize): ButtonAttribute;", - "mainBuggyLine": "988" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "1000", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "role(value: ButtonRole): ButtonAttribute;", - "mainBuggyLine": "1000" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "1040", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontColor(value: ResourceColor): ButtonAttribute;", - "mainBuggyLine": "1040" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "1080", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontSize(value: Length): ButtonAttribute;", - "mainBuggyLine": "1080" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "1120", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontWeight(value: number | FontWeight | string): ButtonAttribute;", - "mainBuggyLine": "1120" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "1160", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontStyle(value: FontStyle): ButtonAttribute;", - "mainBuggyLine": "1160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "1200", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontFamily(value: string | Resource): ButtonAttribute;", - "mainBuggyLine": "1200" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "1211", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contentModifier(modifier: ContentModifier): ButtonAttribute;", - "mainBuggyLine": "1211" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "1232", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "labelStyle(value: LabelStyle): ButtonAttribute;", - "mainBuggyLine": "1232" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "1265", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Button: ButtonInterface;", - "mainBuggyLine": "1265" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts", - "codeContextStaerLine": "1297", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const ButtonInstance: ButtonAttribute;", - "mainBuggyLine": "1297" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "38", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface CalendarDay", - "mainBuggyLine": "38" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "58", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "index: number;", - "mainBuggyLine": "58" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "79", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "lunarMonth: string;", - "mainBuggyLine": "79" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "98", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "lunarDay: string;", - "mainBuggyLine": "98" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "117", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "dayMark: string;", - "mainBuggyLine": "117" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "136", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "dayMarkValue: string;", - "mainBuggyLine": "136" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "155", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "year: number;", - "mainBuggyLine": "155" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "174", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "month: number;", - "mainBuggyLine": "174" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "193", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "day: number;", - "mainBuggyLine": "193" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "212", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "isFirstOfLunar: boolean;", - "mainBuggyLine": "212" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "233", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "hasSchedule: boolean;", - "mainBuggyLine": "233" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "252", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "markLunarDay: boolean;", - "mainBuggyLine": "252" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "272", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface MonthData", - "mainBuggyLine": "272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "290", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "year: number;", - "mainBuggyLine": "290" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "309", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "month: number;", - "mainBuggyLine": "309" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "328", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "data: CalendarDay[];", - "mainBuggyLine": "328" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "348", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface CurrentDayStyle", - "mainBuggyLine": "348" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "366", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "dayColor?: ResourceColor;", - "mainBuggyLine": "366" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "385", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "lunarColor?: ResourceColor;", - "mainBuggyLine": "385" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "404", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "markLunarColor?: ResourceColor;", - "mainBuggyLine": "404" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "423", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "dayFontSize?: number;", - "mainBuggyLine": "423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "442", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "lunarDayFontSize?: number;", - "mainBuggyLine": "442" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "461", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "dayHeight?: number;", - "mainBuggyLine": "461" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "480", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "dayWidth?: number;", - "mainBuggyLine": "480" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "499", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "gregorianCalendarHeight?: number;", - "mainBuggyLine": "499" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "518", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "dayYAxisOffset?: number;", - "mainBuggyLine": "518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "537", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "lunarDayYAxisOffset?: number;", - "mainBuggyLine": "537" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "556", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "underscoreXAxisOffset?: number;", - "mainBuggyLine": "556" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "575", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "underscoreYAxisOffset?: number;", - "mainBuggyLine": "575" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "594", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "scheduleMarkerXAxisOffset?: number;", - "mainBuggyLine": "594" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "613", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "scheduleMarkerYAxisOffset?: number;", - "mainBuggyLine": "613" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "632", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "colSpace?: number;", - "mainBuggyLine": "632" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "651", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "dailyFiveRowSpace?: number;", - "mainBuggyLine": "651" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "670", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "dailySixRowSpace?: number;", - "mainBuggyLine": "670" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "689", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "lunarHeight?: number;", - "mainBuggyLine": "689" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "708", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "underscoreWidth?: number;", - "mainBuggyLine": "708" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "727", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "underscoreLength?: number;", - "mainBuggyLine": "727" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "746", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "scheduleMarkerRadius?: number;", - "mainBuggyLine": "746" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "765", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "boundaryRowOffset?: number;", - "mainBuggyLine": "765" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "784", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "boundaryColOffset?: number;", - "mainBuggyLine": "784" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "804", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface NonCurrentDayStyle", - "mainBuggyLine": "804" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "822", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "nonCurrentMonthDayColor?: ResourceColor;", - "mainBuggyLine": "822" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "841", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "nonCurrentMonthLunarColor?: ResourceColor;", - "mainBuggyLine": "841" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "860", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "nonCurrentMonthWorkDayMarkColor?: ResourceColor;", - "mainBuggyLine": "860" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "879", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "nonCurrentMonthOffDayMarkColor?: ResourceColor;", - "mainBuggyLine": "879" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "899", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface TodayStyle", - "mainBuggyLine": "899" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "917", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "focusedDayColor?: ResourceColor;", - "mainBuggyLine": "917" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "936", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "focusedLunarColor?: ResourceColor;", - "mainBuggyLine": "936" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "955", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "focusedAreaBackgroundColor?: ResourceColor;", - "mainBuggyLine": "955" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "974", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "focusedAreaRadius?: number;", - "mainBuggyLine": "974" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "994", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface WeekStyle", - "mainBuggyLine": "994" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1012", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "weekColor?: ResourceColor;", - "mainBuggyLine": "1012" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1031", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "weekendDayColor?: ResourceColor;", - "mainBuggyLine": "1031" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1050", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "weekendLunarColor?: ResourceColor;", - "mainBuggyLine": "1050" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1069", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "weekFontSize?: number;", - "mainBuggyLine": "1069" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1088", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "weekHeight?: number;", - "mainBuggyLine": "1088" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1107", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "weekWidth?: number;", - "mainBuggyLine": "1107" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1126", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "weekAndDayRowSpace?: number;", - "mainBuggyLine": "1126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1146", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface WorkStateStyle", - "mainBuggyLine": "1146" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1164", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "workDayMarkColor?: ResourceColor;", - "mainBuggyLine": "1164" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1183", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "offDayMarkColor?: ResourceColor;", - "mainBuggyLine": "1183" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1202", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "workDayMarkSize?: number;", - "mainBuggyLine": "1202" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1221", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "offDayMarkSize?: number;", - "mainBuggyLine": "1221" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1240", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "workStateWidth?: number;", - "mainBuggyLine": "1240" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1259", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "workStateHorizontalMovingDistance?: number;", - "mainBuggyLine": "1259" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1278", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "workStateVerticalMovingDistance?: number;", - "mainBuggyLine": "1278" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1298", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface CalendarSelectedDate", - "mainBuggyLine": "1298" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1316", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "year: number;", - "mainBuggyLine": "1316" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1335", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "month: number;", - "mainBuggyLine": "1335" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1354", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "day: number;", - "mainBuggyLine": "1354" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1374", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface CalendarRequestedData", - "mainBuggyLine": "1374" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1392", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "year: number;", - "mainBuggyLine": "1392" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1411", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "month: number;", - "mainBuggyLine": "1411" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1430", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "currentYear: number;", - "mainBuggyLine": "1430" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1449", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "currentMonth: number;", - "mainBuggyLine": "1449" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1468", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "monthState: number;", - "mainBuggyLine": "1468" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1486", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class CalendarController", - "mainBuggyLine": "1486" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1502", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "1502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1519", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "backToToday();", - "mainBuggyLine": "1519" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1538", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "goTo(value: { year: number; month: number; day: number });", - "mainBuggyLine": "1538" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1558", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface CalendarInterface", - "mainBuggyLine": "1558" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1578", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(value: {\n date: { year: number; month: number; day: number };\n currentData: MonthData;\n preData: MonthData;\n nextData: MonthData;\n controller?: CalendarController;\n }): CalendarAttribute;", - "mainBuggyLine": "1578" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1598", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class CalendarAttribute", - "mainBuggyLine": "1598" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1618", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "showLunar(value: boolean): CalendarAttribute;", - "mainBuggyLine": "1618" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1639", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "showHoliday(value: boolean): CalendarAttribute;", - "mainBuggyLine": "1639" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1660", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "needSlide(value: boolean): CalendarAttribute;", - "mainBuggyLine": "1660" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1681", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "startOfWeek(value: number): CalendarAttribute;", - "mainBuggyLine": "1681" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1702", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "offDays(value: number): CalendarAttribute;", - "mainBuggyLine": "1702" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1723", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "direction(value: Axis): CalendarAttribute;", - "mainBuggyLine": "1723" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1744", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "currentDayStyle(value: CurrentDayStyle): CalendarAttribute;", - "mainBuggyLine": "1744" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1765", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "nonCurrentDayStyle(value: NonCurrentDayStyle): CalendarAttribute;", - "mainBuggyLine": "1765" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1786", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "todayStyle(value: TodayStyle): CalendarAttribute;", - "mainBuggyLine": "1786" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1807", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "weekStyle(value: WeekStyle): CalendarAttribute;", - "mainBuggyLine": "1807" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1828", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "workStateStyle(value: WorkStateStyle): CalendarAttribute;", - "mainBuggyLine": "1828" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1849", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onSelectChange(event: (event: CalendarSelectedDate) => void): CalendarAttribute;", - "mainBuggyLine": "1849" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1870", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onRequestData(\n event: (event: CalendarRequestedData) => void,\n ): CalendarAttribute;", - "mainBuggyLine": "1870" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1890", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Calendar: CalendarInterface;", - "mainBuggyLine": "1890" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts", - "codeContextStaerLine": "1907", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const CalendarInstance: CalendarAttribute;", - "mainBuggyLine": "1907" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar_picker.d.ts", - "codeContextStaerLine": "259", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface CalendarDialogOptions", - "mainBuggyLine": "259" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar_picker.d.ts", - "codeContextStaerLine": "361", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "acceptButtonStyle?: PickerDialogButtonStyle;", - "mainBuggyLine": "361" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar_picker.d.ts", - "codeContextStaerLine": "371", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "cancelButtonStyle?: PickerDialogButtonStyle;", - "mainBuggyLine": "371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar_picker.d.ts", - "codeContextStaerLine": "403", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillAppear?: () => void;", - "mainBuggyLine": "403" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar_picker.d.ts", - "codeContextStaerLine": "413", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillDisappear?: () => void;", - "mainBuggyLine": "413" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar_picker.d.ts", - "codeContextStaerLine": "423", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "shadow?: ShadowOptions | ShadowStyle;", - "mainBuggyLine": "423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "28", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type DrawingCanvas = import('../api/@ohos.graphics.drawing').default.Canvas;", - "mainBuggyLine": "28" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "72", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type CanvasFillRule = \"evenodd\" | \"nonzero\";", - "mainBuggyLine": "72" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "72", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type CanvasFillRule = \"evenodd\" | \"nonzero\";", - "mainBuggyLine": "72" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "120", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type CanvasLineCap = \"butt\" | \"round\" | \"square\";", - "mainBuggyLine": "120" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "120", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type CanvasLineCap = \"butt\" | \"round\" | \"square\";", - "mainBuggyLine": "120" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "180", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type CanvasLineJoin = \"bevel\" | \"miter\" | \"round\";", - "mainBuggyLine": "180" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "180", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type CanvasLineJoin = \"bevel\" | \"miter\" | \"round\";", - "mainBuggyLine": "180" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "224", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type CanvasDirection = \"inherit\" | \"ltr\" | \"rtl\";", - "mainBuggyLine": "224" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "224", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type CanvasDirection = \"inherit\" | \"ltr\" | \"rtl\";", - "mainBuggyLine": "224" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "284", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type CanvasTextAlign = \"center\" | \"end\" | \"left\" | \"right\" | \"start\";", - "mainBuggyLine": "284" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "284", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type CanvasTextAlign = \"center\" | \"end\" | \"left\" | \"right\" | \"start\";", - "mainBuggyLine": "284" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "348", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type CanvasTextBaseline = \"alphabetic\" | \"bottom\" | \"hanging\" | \"ideographic\" | \"middle\" | \"top\";", - "mainBuggyLine": "348" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "348", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type CanvasTextBaseline = \"alphabetic\" | \"bottom\" | \"hanging\" | \"ideographic\" | \"middle\" | \"top\";", - "mainBuggyLine": "348" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "392", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type ImageSmoothingQuality = \"high\" | \"low\" | \"medium\";", - "mainBuggyLine": "392" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "392", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type ImageSmoothingQuality = \"high\" | \"low\" | \"medium\";", - "mainBuggyLine": "392" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "424", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class CanvasGradient", - "mainBuggyLine": "424" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "467", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "addColorStop(offset: number, color: string): void;", - "mainBuggyLine": "467" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "500", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class CanvasPath", - "mainBuggyLine": "500" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "559", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, counterclockwise?: boolean): void;", - "mainBuggyLine": "559" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "611", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "arcTo(x1: number, y1: number, x2: number, y2: number, radius: number): void;", - "mainBuggyLine": "611" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "667", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void;", - "mainBuggyLine": "667" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "699", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "closePath(): void;", - "mainBuggyLine": "699" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "771", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "ellipse(\n x: number,\n y: number,\n radiusX: number,\n radiusY: number,\n rotation: number,\n startAngle: number,\n endAngle: number,\n counterclockwise?: boolean,\n ): void;", - "mainBuggyLine": "771" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "820", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "lineTo(x: number, y: number): void;", - "mainBuggyLine": "820" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "860", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "moveTo(x: number, y: number): void;", - "mainBuggyLine": "860" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "908", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "quadraticCurveTo(cpx: number, cpy: number, x: number, y: number): void;", - "mainBuggyLine": "908" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "956", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "rect(x: number, y: number, w: number, h: number): void;", - "mainBuggyLine": "956" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "993", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class Path2D", - "mainBuggyLine": "993" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1032", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "addPath(path: Path2D, transform?: Matrix2D): void;", - "mainBuggyLine": "1032" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1064", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "1064" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1075", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(unit: LengthMetricsUnit);", - "mainBuggyLine": "1075" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1111", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor(path: Path2D);", - "mainBuggyLine": "1111" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1123", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(path: Path2D, unit: LengthMetricsUnit);", - "mainBuggyLine": "1123" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1159", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor(d: string);", - "mainBuggyLine": "1159" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1171", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(description: string, unit: LengthMetricsUnit);", - "mainBuggyLine": "1171" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1208", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface CanvasPattern", - "mainBuggyLine": "1208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1243", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "setTransform(transform?: Matrix2D): void;", - "mainBuggyLine": "1243" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1280", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface TextMetrics", - "mainBuggyLine": "1280" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1319", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly actualBoundingBoxAscent: number;", - "mainBuggyLine": "1319" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1359", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly actualBoundingBoxDescent: number;", - "mainBuggyLine": "1359" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1399", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly actualBoundingBoxLeft: number;", - "mainBuggyLine": "1399" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1439", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly actualBoundingBoxRight: number;", - "mainBuggyLine": "1439" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1479", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly alphabeticBaseline: number;", - "mainBuggyLine": "1479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1519", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly emHeightAscent: number;", - "mainBuggyLine": "1519" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1559", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly emHeightDescent: number;", - "mainBuggyLine": "1559" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1599", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly fontBoundingBoxAscent: number;", - "mainBuggyLine": "1599" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1639", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly fontBoundingBoxDescent: number;", - "mainBuggyLine": "1639" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1679", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly hangingBaseline: number;", - "mainBuggyLine": "1679" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1719", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly ideographicBaseline: number;", - "mainBuggyLine": "1719" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1755", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly width: number;", - "mainBuggyLine": "1755" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1791", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly height: number;", - "mainBuggyLine": "1791" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1824", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class ImageBitmap", - "mainBuggyLine": "1824" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1859", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly height: number;", - "mainBuggyLine": "1859" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1895", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly width: number;", - "mainBuggyLine": "1895" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1927", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "close(): void;", - "mainBuggyLine": "1927" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1963", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor(src: string);", - "mainBuggyLine": "1963" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "1975", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(src: string, unit: LengthMetricsUnit);", - "mainBuggyLine": "1975" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2001", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(data: PixelMap);", - "mainBuggyLine": "2001" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2012", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(data: PixelMap, unit: LengthMetricsUnit);", - "mainBuggyLine": "2012" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2045", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class ImageData", - "mainBuggyLine": "2045" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2080", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly data: Uint8ClampedArray;", - "mainBuggyLine": "2080" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2116", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly height: number;", - "mainBuggyLine": "2116" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2152", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly width: number;", - "mainBuggyLine": "2152" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2196", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor(width: number, height: number, data?: Uint8ClampedArray);", - "mainBuggyLine": "2196" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2210", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(width: number, height: number, data?: Uint8ClampedArray, unit?: LengthMetricsUnit);", - "mainBuggyLine": "2210" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2243", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class RenderingContextSettings", - "mainBuggyLine": "2243" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2278", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "antialias?: boolean;", - "mainBuggyLine": "2278" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2314", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor(antialias?: boolean);", - "mainBuggyLine": "2314" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2351", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class CanvasRenderer", - "mainBuggyLine": "2351" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2390", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "globalAlpha: number;", - "mainBuggyLine": "2390" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2482", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "globalCompositeOperation: string;", - "mainBuggyLine": "2482" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2526", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "drawImage(image: ImageBitmap | PixelMap, dx: number, dy: number): void;", - "mainBuggyLine": "2526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2578", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "drawImage(image: ImageBitmap | PixelMap, dx: number, dy: number, dw: number, dh: number): void;", - "mainBuggyLine": "2578" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2646", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "drawImage(\n image: ImageBitmap | PixelMap,\n sx: number,\n sy: number,\n sw: number,\n sh: number,\n dx: number,\n dy: number,\n dw: number,\n dh: number,\n ): void;", - "mainBuggyLine": "2646" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2688", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "beginPath(): void;", - "mainBuggyLine": "2688" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2724", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "clip(fillRule?: CanvasFillRule): void;", - "mainBuggyLine": "2724" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2764", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "clip(path: Path2D, fillRule?: CanvasFillRule): void;", - "mainBuggyLine": "2764" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2800", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fill(fillRule?: CanvasFillRule): void;", - "mainBuggyLine": "2800" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2840", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fill(path: Path2D, fillRule?: CanvasFillRule): void;", - "mainBuggyLine": "2840" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2872", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "stroke(): void;", - "mainBuggyLine": "2872" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2908", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "stroke(path: Path2D): void;", - "mainBuggyLine": "2908" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "2958", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fillStyle: string | number | CanvasGradient | CanvasPattern;", - "mainBuggyLine": "2958" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "3008", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "strokeStyle: string | number | CanvasGradient | CanvasPattern;", - "mainBuggyLine": "3008" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "3060", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "createLinearGradient(x0: number, y0: number, x1: number, y1: number): CanvasGradient;", - "mainBuggyLine": "3060" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "3124", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "createPattern(image: ImageBitmap, repetition: string | null): CanvasPattern | null;", - "mainBuggyLine": "3124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "3184", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "createRadialGradient(x0: number, y0: number, r0: number, x1: number, y1: number, r1: number): CanvasGradient;", - "mainBuggyLine": "3184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "3211", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createConicGradient(\n startAngle: number,\n x: number,\n y: number\n ): CanvasGradient;", - "mainBuggyLine": "3211" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "3315", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "filter: string;", - "mainBuggyLine": "3315" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "3359", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "createImageData(sw: number, sh: number): ImageData;", - "mainBuggyLine": "3359" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "3403", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "createImageData(imagedata: ImageData): ImageData;", - "mainBuggyLine": "3403" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "3455", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getImageData(sx: number, sy: number, sw: number, sh: number): ImageData;", - "mainBuggyLine": "3455" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "3493", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPixelMap(sx: number, sy: number, sw: number, sh: number): PixelMap;", - "mainBuggyLine": "3493" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "3537", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "putImageData(imagedata: ImageData, dx: number | string, dy: number | string): void;", - "mainBuggyLine": "3537" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "3613", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "putImageData(\n imagedata: ImageData,\n dx: number | string,\n dy: number | string,\n dirtyX: number | string,\n dirtyY: number | string,\n dirtyWidth: number | string,\n dirtyHeight: number | string\n ): void;", - "mainBuggyLine": "3613" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "3661", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "imageSmoothingEnabled: boolean;", - "mainBuggyLine": "3661" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "3697", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "imageSmoothingQuality: ImageSmoothingQuality;", - "mainBuggyLine": "3697" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "3733", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "lineCap: CanvasLineCap;", - "mainBuggyLine": "3733" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "3769", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "lineDashOffset: number;", - "mainBuggyLine": "3769" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "3805", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "lineJoin: CanvasLineJoin;", - "mainBuggyLine": "3805" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "3841", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "lineWidth: number;", - "mainBuggyLine": "3841" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "3877", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "miterLimit: number;", - "mainBuggyLine": "3877" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "3913", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getLineDash(): number[];", - "mainBuggyLine": "3913" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "3953", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "setLineDash(segments: number[]): void;", - "mainBuggyLine": "3953" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4001", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "clearRect(x: number, y: number, w: number, h: number): void;", - "mainBuggyLine": "4001" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4049", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fillRect(x: number, y: number, w: number, h: number): void;", - "mainBuggyLine": "4049" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4097", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "strokeRect(x: number, y: number, w: number, h: number): void;", - "mainBuggyLine": "4097" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4133", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "shadowBlur: number;", - "mainBuggyLine": "4133" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4169", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "shadowColor: string;", - "mainBuggyLine": "4169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4205", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "shadowOffsetX: number;", - "mainBuggyLine": "4205" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4241", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "shadowOffsetY: number;", - "mainBuggyLine": "4241" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4273", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "restore(): void;", - "mainBuggyLine": "4273" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4305", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "save(): void;", - "mainBuggyLine": "4305" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4353", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fillText(text: string, x: number, y: number, maxWidth?: number): void;", - "mainBuggyLine": "4353" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4393", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "measureText(text: string): TextMetrics;", - "mainBuggyLine": "4393" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4441", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "strokeText(text: string, x: number, y: number, maxWidth?: number): void;", - "mainBuggyLine": "4441" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4473", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "direction: CanvasDirection;", - "mainBuggyLine": "4473" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4473", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "direction: CanvasDirection;", - "mainBuggyLine": "4473" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4509", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "font: string;", - "mainBuggyLine": "4509" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4545", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "textAlign: CanvasTextAlign;", - "mainBuggyLine": "4545" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4581", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "textBaseline: CanvasTextBaseline;", - "mainBuggyLine": "4581" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4617", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getTransform(): Matrix2D;", - "mainBuggyLine": "4617" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4649", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "resetTransform(): void;", - "mainBuggyLine": "4649" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4689", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "rotate(angle: number): void;", - "mainBuggyLine": "4689" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4729", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "scale(x: number, y: number): void;", - "mainBuggyLine": "4729" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4789", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "setTransform(a: number, b: number, c: number, d: number, e: number, f: number): void;", - "mainBuggyLine": "4789" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4829", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "setTransform(transform?: Matrix2D): void;", - "mainBuggyLine": "4829" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4889", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "transform(a: number, b: number, c: number, d: number, e: number, f: number): void;", - "mainBuggyLine": "4889" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4929", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "translate(x: number, y: number): void;", - "mainBuggyLine": "4929" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4955", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setPixelMap(value?: PixelMap): void;", - "mainBuggyLine": "4955" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "4991", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "transferFromImageBitmap(bitmap: ImageBitmap): void;", - "mainBuggyLine": "4991" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5000", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "saveLayer(): void;", - "mainBuggyLine": "5000" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5009", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "restoreLayer(): void;", - "mainBuggyLine": "5009" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5018", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "reset(): void;", - "mainBuggyLine": "5018" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5055", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class CanvasRenderingContext2D", - "mainBuggyLine": "5055" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5090", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly height: number;", - "mainBuggyLine": "5090" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5126", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly width: number;", - "mainBuggyLine": "5126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5174", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "toDataURL(type?: string, quality?: any): string;", - "mainBuggyLine": "5174" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5186", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startImageAnalyzer(config: ImageAnalyzerConfig): Promise;", - "mainBuggyLine": "5186" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5193", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stopImageAnalyzer(): void;", - "mainBuggyLine": "5193" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5229", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor(settings?: RenderingContextSettings);", - "mainBuggyLine": "5229" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5241", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(settings?: RenderingContextSettings, unit?: LengthMetricsUnit);", - "mainBuggyLine": "5241" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5278", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class OffscreenCanvasRenderingContext2D", - "mainBuggyLine": "5278" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5325", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "toDataURL(type?: string, quality?: any): string;", - "mainBuggyLine": "5325" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5361", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "transferToImageBitmap(): ImageBitmap;", - "mainBuggyLine": "5361" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5405", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor(width: number, height: number, settings?: RenderingContextSettings);", - "mainBuggyLine": "5405" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5419", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(width: number, height: number, settings?: RenderingContextSettings, unit?: LengthMetricsUnit);", - "mainBuggyLine": "5419" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5455", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class OffscreenCanvas", - "mainBuggyLine": "5455" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5490", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "height: number;", - "mainBuggyLine": "5490" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5526", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "width: number;", - "mainBuggyLine": "5526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5562", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "transferToImageBitmap(): ImageBitmap;", - "mainBuggyLine": "5562" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5587", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getContext(contextType: \"2d\", options?: RenderingContextSettings): OffscreenCanvasRenderingContext2D;", - "mainBuggyLine": "5587" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5627", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor(width: number, height: number);", - "mainBuggyLine": "5627" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5640", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(width: number, height: number, unit: LengthMetricsUnit);", - "mainBuggyLine": "5640" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5757", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface CanvasInterface", - "mainBuggyLine": "5757" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5807", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(context?: CanvasRenderingContext2D | DrawingRenderingContext): CanvasAttribute;", - "mainBuggyLine": "5807" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5844", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class CanvasAttribute", - "mainBuggyLine": "5844" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5883", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onReady(event: () => void): CanvasAttribute;", - "mainBuggyLine": "5883" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5893", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableAnalyzer(enable: boolean): CanvasAttribute;", - "mainBuggyLine": "5893" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5926", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Canvas: CanvasInterface;", - "mainBuggyLine": "5926" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts", - "codeContextStaerLine": "5958", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const CanvasInstance: CanvasAttribute;", - "mainBuggyLine": "5958" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkbox.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface CheckboxOptions", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkbox.d.ts", - "codeContextStaerLine": "90", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "name?: string;", - "mainBuggyLine": "90" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkbox.d.ts", - "codeContextStaerLine": "126", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "group?: string;", - "mainBuggyLine": "126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkbox.d.ts", - "codeContextStaerLine": "136", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "indicatorBuilder?: CustomBuilder;", - "mainBuggyLine": "136" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkbox.d.ts", - "codeContextStaerLine": "147", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface CheckBoxConfiguration", - "mainBuggyLine": "147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkbox.d.ts", - "codeContextStaerLine": "213", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface CheckboxInterface", - "mainBuggyLine": "213" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkbox.d.ts", - "codeContextStaerLine": "256", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(options?: CheckboxOptions): CheckboxAttribute;", - "mainBuggyLine": "256" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkbox.d.ts", - "codeContextStaerLine": "293", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class CheckboxAttribute", - "mainBuggyLine": "293" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkbox.d.ts", - "codeContextStaerLine": "332", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "select(value: boolean): CheckboxAttribute;", - "mainBuggyLine": "332" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkbox.d.ts", - "codeContextStaerLine": "372", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "selectedColor(value: ResourceColor): CheckboxAttribute;", - "mainBuggyLine": "372" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkbox.d.ts", - "codeContextStaerLine": "395", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "shape(value: CheckBoxShape): CheckboxAttribute;", - "mainBuggyLine": "395" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkbox.d.ts", - "codeContextStaerLine": "416", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "unselectedColor(value: ResourceColor): CheckboxAttribute;", - "mainBuggyLine": "416" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkbox.d.ts", - "codeContextStaerLine": "437", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "mark(value: MarkStyle): CheckboxAttribute;", - "mainBuggyLine": "437" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkbox.d.ts", - "codeContextStaerLine": "477", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onChange(callback: (value: boolean) => void): CheckboxAttribute;", - "mainBuggyLine": "477" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkbox.d.ts", - "codeContextStaerLine": "488", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contentModifier(modifier: ContentModifier): CheckboxAttribute;", - "mainBuggyLine": "488" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkbox.d.ts", - "codeContextStaerLine": "521", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Checkbox: CheckboxInterface;", - "mainBuggyLine": "521" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkbox.d.ts", - "codeContextStaerLine": "553", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const CheckboxInstance: CheckboxAttribute;", - "mainBuggyLine": "553" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum SelectStatus", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "All", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts", - "codeContextStaerLine": "117", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Part", - "mainBuggyLine": "117" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts", - "codeContextStaerLine": "148", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "None", - "mainBuggyLine": "148" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts", - "codeContextStaerLine": "185", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface CheckboxGroupOptions", - "mainBuggyLine": "185" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts", - "codeContextStaerLine": "220", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "group?: string;", - "mainBuggyLine": "220" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts", - "codeContextStaerLine": "257", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface CheckboxGroupResult", - "mainBuggyLine": "257" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts", - "codeContextStaerLine": "292", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "name: Array;", - "mainBuggyLine": "292" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts", - "codeContextStaerLine": "327", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "status: SelectStatus;", - "mainBuggyLine": "327" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts", - "codeContextStaerLine": "364", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface CheckboxGroupInterface", - "mainBuggyLine": "364" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts", - "codeContextStaerLine": "403", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(options?: CheckboxGroupOptions): CheckboxGroupAttribute;", - "mainBuggyLine": "403" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts", - "codeContextStaerLine": "440", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class CheckboxGroupAttribute", - "mainBuggyLine": "440" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts", - "codeContextStaerLine": "479", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "selectAll(value: boolean): CheckboxGroupAttribute;", - "mainBuggyLine": "479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts", - "codeContextStaerLine": "519", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "selectedColor(value: ResourceColor): CheckboxGroupAttribute;", - "mainBuggyLine": "519" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts", - "codeContextStaerLine": "540", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "unselectedColor(value: ResourceColor): CheckboxGroupAttribute;", - "mainBuggyLine": "540" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts", - "codeContextStaerLine": "561", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "mark(value: MarkStyle): CheckboxGroupAttribute;", - "mainBuggyLine": "561" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts", - "codeContextStaerLine": "601", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onChange(callback: (event: CheckboxGroupResult) => void): CheckboxGroupAttribute;", - "mainBuggyLine": "601" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts", - "codeContextStaerLine": "613", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "checkboxShape(value: CheckBoxShape): CheckboxGroupAttribute;", - "mainBuggyLine": "613" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts", - "codeContextStaerLine": "613", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "checkboxShape(value: CheckBoxShape): CheckboxGroupAttribute;", - "mainBuggyLine": "613" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts", - "codeContextStaerLine": "646", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const CheckboxGroup: CheckboxGroupInterface;", - "mainBuggyLine": "646" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts", - "codeContextStaerLine": "678", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const CheckboxGroupInstance: CheckboxGroupAttribute;", - "mainBuggyLine": "678" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/circle.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface CircleOptions", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/circle.d.ts", - "codeContextStaerLine": "90", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "width?: string | number;", - "mainBuggyLine": "90" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/circle.d.ts", - "codeContextStaerLine": "126", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "height?: string | number;", - "mainBuggyLine": "126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/circle.d.ts", - "codeContextStaerLine": "163", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface CircleInterface", - "mainBuggyLine": "163" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/circle.d.ts", - "codeContextStaerLine": "202", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "new (value?: CircleOptions): CircleAttribute;", - "mainBuggyLine": "202" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/circle.d.ts", - "codeContextStaerLine": "242", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(value?: CircleOptions): CircleAttribute;", - "mainBuggyLine": "242" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/circle.d.ts", - "codeContextStaerLine": "279", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class CircleAttribute", - "mainBuggyLine": "279" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/circle.d.ts", - "codeContextStaerLine": "311", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Circle: CircleInterface;", - "mainBuggyLine": "311" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/circle.d.ts", - "codeContextStaerLine": "343", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const CircleInstance: CircleAttribute;", - "mainBuggyLine": "343" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/column.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface ColumnInterface", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/column.d.ts", - "codeContextStaerLine": "102", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(value?: { space?: string | number }): ColumnAttribute;", - "mainBuggyLine": "102" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/column.d.ts", - "codeContextStaerLine": "139", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class ColumnAttribute", - "mainBuggyLine": "139" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/column.d.ts", - "codeContextStaerLine": "178", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "alignItems(value: HorizontalAlign): ColumnAttribute;", - "mainBuggyLine": "178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/column.d.ts", - "codeContextStaerLine": "218", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "justifyContent(value: FlexAlign): ColumnAttribute;", - "mainBuggyLine": "218" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/column.d.ts", - "codeContextStaerLine": "228", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pointLight(value: PointLightStyle): ColumnAttribute;", - "mainBuggyLine": "228" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/column.d.ts", - "codeContextStaerLine": "261", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Column: ColumnInterface;", - "mainBuggyLine": "261" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/column.d.ts", - "codeContextStaerLine": "293", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const ColumnInstance: ColumnAttribute;", - "mainBuggyLine": "293" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "40", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface ComponentOptions", - "mainBuggyLine": "40" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "62", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "freezeWhenInactive : boolean,", - "mainBuggyLine": "62" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "195", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Component: ClassDecorator & ((options: ComponentOptions) => ClassDecorator);", - "mainBuggyLine": "195" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "223", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface EntryOptions", - "mainBuggyLine": "223" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "241", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "routeName? : string,", - "mainBuggyLine": "241" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "260", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "storage? : LocalStorage,", - "mainBuggyLine": "260" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "271", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "useSharedStorage? : boolean,", - "mainBuggyLine": "271" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "271", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "useSharedStorage? : boolean,", - "mainBuggyLine": "271" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "307", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Entry: ClassDecorator & ((options?: LocalStorage | EntryOptions) => ClassDecorator);", - "mainBuggyLine": "307" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "339", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Observed: ClassDecorator;", - "mainBuggyLine": "339" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "349", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const ObservedV2: ClassDecorator;", - "mainBuggyLine": "349" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "381", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Preview: ClassDecorator & ((value: PreviewParams) => ClassDecorator);", - "mainBuggyLine": "381" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "392", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Require: PropertyDecorator;", - "mainBuggyLine": "392" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "424", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const BuilderParam: PropertyDecorator;", - "mainBuggyLine": "424" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "492", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const State: PropertyDecorator;", - "mainBuggyLine": "492" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "511", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Track: PropertyDecorator;", - "mainBuggyLine": "511" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "521", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Trace: PropertyDecorator;", - "mainBuggyLine": "521" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "553", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Prop: PropertyDecorator;", - "mainBuggyLine": "553" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "585", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Link: PropertyDecorator;", - "mainBuggyLine": "585" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "617", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const ObjectLink: PropertyDecorator;", - "mainBuggyLine": "617" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "629", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface ProvideOptions", - "mainBuggyLine": "629" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "641", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "allowOverride?: string,", - "mainBuggyLine": "641" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "674", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Provide: PropertyDecorator & ((value: string | ProvideOptions) => PropertyDecorator);", - "mainBuggyLine": "674" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "714", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Consume: PropertyDecorator & ((value: string) => PropertyDecorator);", - "mainBuggyLine": "714" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "809", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Watch: (value: string) => PropertyDecorator;", - "mainBuggyLine": "809" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "841", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Builder: MethodDecorator;", - "mainBuggyLine": "841" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "873", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Styles: MethodDecorator;", - "mainBuggyLine": "873" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "905", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Extend: MethodDecorator & ((value: any) => MethodDecorator);", - "mainBuggyLine": "905" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "944", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type MonitorDecorator = (value: string, ...args: string[]) => MethodDecorator;", - "mainBuggyLine": "944" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "944", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type MonitorDecorator = (value: string, ...args: string[]) => MethodDecorator;", - "mainBuggyLine": "944" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "944", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_06", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [returns] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type MonitorDecorator = (value: string, ...args: string[]) => MethodDecorator;", - "mainBuggyLine": "944" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "944", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [2] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "declare type MonitorDecorator = (value: string, ...args: string[]) => MethodDecorator;", - "mainBuggyLine": "944" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "944", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type MonitorDecorator = (value: string, ...args: string[]) => MethodDecorator;", - "mainBuggyLine": "944" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1224", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const LocalStorageProp: (value: string) => PropertyDecorator;", - "mainBuggyLine": "1224" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1299", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type Context = import('../api/application/Context').default;", - "mainBuggyLine": "1299" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1334", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare function postCardAction(component: Object, action: Object): void;", - "mainBuggyLine": "1334" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1370", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface Configuration", - "mainBuggyLine": "1370" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1405", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly colorMode: string;", - "mainBuggyLine": "1405" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1441", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly fontScale: number;", - "mainBuggyLine": "1441" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1478", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface Rectangle", - "mainBuggyLine": "1478" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1513", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "x?: Length;", - "mainBuggyLine": "1513" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1549", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "y?: Length;", - "mainBuggyLine": "1549" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1585", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "width?: Length;", - "mainBuggyLine": "1585" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1621", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "height?: Length;", - "mainBuggyLine": "1621" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1702", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare function $r(value: string, ...params: any[]): Resource;", - "mainBuggyLine": "1702" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1742", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare function $rawfile(value: string): Resource;", - "mainBuggyLine": "1742" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1763", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum FinishCallbackType", - "mainBuggyLine": "1763" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1781", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "REMOVED = 0", - "mainBuggyLine": "1781" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1799", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "LOGICALLY = 1", - "mainBuggyLine": "1799" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1821", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum TouchTestStrategy", - "mainBuggyLine": "1821" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1839", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "DEFAULT = 0", - "mainBuggyLine": "1839" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1858", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "FORWARD_COMPETITION = 1", - "mainBuggyLine": "1858" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1877", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "FORWARD = 2", - "mainBuggyLine": "1877" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1914", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface AnimateParam", - "mainBuggyLine": "1914" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1953", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "duration?: number;", - "mainBuggyLine": "1953" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "1984", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "tempo?: number;", - "mainBuggyLine": "1984" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "2023", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "curve?: Curve | string | ICurve;", - "mainBuggyLine": "2023" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "2052", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "delay?: number;", - "mainBuggyLine": "2052" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "2081", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "iterations?: number;", - "mainBuggyLine": "2081" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "2121", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "playMode?: PlayMode;", - "mainBuggyLine": "2121" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "2157", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onFinish?: () => void;", - "mainBuggyLine": "2157" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "2178", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "finishCallbackType?: FinishCallbackType;", - "mainBuggyLine": "2178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "2187", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "expectedFrameRateRange?: ExpectedFrameRateRange;", - "mainBuggyLine": "2187" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "2217", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface ICurve", - "mainBuggyLine": "2217" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "2251", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "interpolate(fraction: number): number;", - "mainBuggyLine": "2251" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "2661", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface TranslateOptions", - "mainBuggyLine": "2661" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "2696", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "x?: number | string;", - "mainBuggyLine": "2696" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "2732", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "y?: number | string;", - "mainBuggyLine": "2732" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "2768", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "z?: number | string;", - "mainBuggyLine": "2768" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "2805", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface ScaleOptions", - "mainBuggyLine": "2805" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "2840", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "x?: number;", - "mainBuggyLine": "2840" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "2876", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "y?: number;", - "mainBuggyLine": "2876" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "2912", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "z?: number;", - "mainBuggyLine": "2912" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "2948", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "centerX?: number | string;", - "mainBuggyLine": "2948" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "2984", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "centerY?: number | string;", - "mainBuggyLine": "2984" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3014", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface AlignRuleOption", - "mainBuggyLine": "3014" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3042", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "left?: { anchor: string, align: HorizontalAlign };", - "mainBuggyLine": "3042" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3071", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "right?: { anchor: string, align: HorizontalAlign };", - "mainBuggyLine": "3071" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3100", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "middle?: { anchor: string, align: HorizontalAlign };", - "mainBuggyLine": "3100" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3129", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "top?: { anchor: string, align: VerticalAlign };", - "mainBuggyLine": "3129" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3156", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "bottom?: { anchor: string, align: VerticalAlign };", - "mainBuggyLine": "3156" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3185", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "center?: { anchor: string, align: VerticalAlign };", - "mainBuggyLine": "3185" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3208", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "bias?: Bias;", - "mainBuggyLine": "3208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3441", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface RotateOptions", - "mainBuggyLine": "3441" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3476", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "x?: number;", - "mainBuggyLine": "3476" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3512", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "y?: number;", - "mainBuggyLine": "3512" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3548", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "z?: number;", - "mainBuggyLine": "3548" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3584", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "centerX?: number | string;", - "mainBuggyLine": "3584" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3619", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "centerY?: number | string;", - "mainBuggyLine": "3619" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3642", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "centerZ?: number;", - "mainBuggyLine": "3642" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3663", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "perspective?: number;", - "mainBuggyLine": "3663" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3699", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "angle: number | string;", - "mainBuggyLine": "3699" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3778", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum TransitionEdge", - "mainBuggyLine": "3778" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3796", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "TOP", - "mainBuggyLine": "3796" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3815", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "BOTTOM", - "mainBuggyLine": "3815" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3834", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "START", - "mainBuggyLine": "3834" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3853", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "END", - "mainBuggyLine": "3853" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3873", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type TransitionEffects = {\n identity: undefined;\n opacity: number;\n slideSwitch: undefined;\n move: TransitionEdge;\n translate: TranslateOptions;\n rotate: RotateOptions;\n scale: ScaleOptions;\n asymmetric: {\n appear: TransitionEffect;\n disappear: TransitionEffect;\n };\n};", - "mainBuggyLine": "3873" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3873", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type TransitionEffects = {\n identity: undefined;\n opacity: number;\n slideSwitch: undefined;\n move: TransitionEdge;\n translate: TranslateOptions;\n rotate: RotateOptions;\n scale: ScaleOptions;\n asymmetric: {\n appear: TransitionEffect;\n disappear: TransitionEffect;\n };\n};", - "mainBuggyLine": "3873" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3953", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class TransitionEffect", - "mainBuggyLine": "3953" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "3980", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "static readonly IDENTITY: TransitionEffect<\"identity\">;", - "mainBuggyLine": "3980" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4005", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "static readonly OPACITY: TransitionEffect<\"opacity\">;", - "mainBuggyLine": "4005" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4038", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "static readonly SLIDE: TransitionEffect<\n \"asymmetric\",\n {\n appear: TransitionEffect<\"move\", TransitionEdge>;\n disappear: TransitionEffect<\"move\", TransitionEdge>;\n }\n >;", - "mainBuggyLine": "4038" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4069", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "static readonly SLIDE_SWITCH: TransitionEffect<\"slideSwitch\">;", - "mainBuggyLine": "4069" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4092", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "static translate(options: TranslateOptions): TransitionEffect<\"translate\">;", - "mainBuggyLine": "4092" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4115", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "static rotate(options: RotateOptions): TransitionEffect<\"rotate\">;", - "mainBuggyLine": "4115" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4138", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "static scale(options: ScaleOptions): TransitionEffect<\"scale\">;", - "mainBuggyLine": "4138" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4161", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "static opacity(alpha: number): TransitionEffect<\"opacity\">;", - "mainBuggyLine": "4161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4184", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "static move(edge: TransitionEdge): TransitionEffect<\"move\">;", - "mainBuggyLine": "4184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4209", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "static asymmetric(\n appear: TransitionEffect,\n disappear: TransitionEffect\n ): TransitionEffect<\"asymmetric\">;", - "mainBuggyLine": "4209" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4235", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor(type: Type, effect: Effect);", - "mainBuggyLine": "4235" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4258", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "animation(value: AnimateParam): TransitionEffect;", - "mainBuggyLine": "4258" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4281", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "combine(transitionEffect: TransitionEffect): TransitionEffect;", - "mainBuggyLine": "4281" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4302", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface PreviewParams", - "mainBuggyLine": "4302" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4321", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "title?: string;", - "mainBuggyLine": "4321" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4341", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "width?: number;", - "mainBuggyLine": "4341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4361", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "height?: number;", - "mainBuggyLine": "4361" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4380", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "locale?: string;", - "mainBuggyLine": "4380" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4400", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "colorMode?: string;", - "mainBuggyLine": "4400" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4419", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "deviceType?: string;", - "mainBuggyLine": "4419" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4438", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "dpi?: number;", - "mainBuggyLine": "4438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4457", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "orientation?: string;", - "mainBuggyLine": "4457" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4476", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "roundScreen?: boolean;", - "mainBuggyLine": "4476" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4728", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare function animateTo(value: AnimateParam, event: () => void): void;", - "mainBuggyLine": "4728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4779", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare function vp2px(value: number): number;", - "mainBuggyLine": "4779" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4819", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare function px2vp(value: number): number;", - "mainBuggyLine": "4819" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4859", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare function fp2px(value: number): number;", - "mainBuggyLine": "4859" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4899", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare function px2fp(value: number): number;", - "mainBuggyLine": "4899" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4939", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare function lpx2px(value: number): number;", - "mainBuggyLine": "4939" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "4979", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare function px2lpx(value: number): number;", - "mainBuggyLine": "4979" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5000", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare namespace focusControl", - "mainBuggyLine": "5000" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5028", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function requestFocus(value: string): boolean;", - "mainBuggyLine": "5028" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5044", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type PointerStyle = import('../api/@ohos.multimodalInput.pointer').default.PointerStyle;", - "mainBuggyLine": "5044" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5134", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface EventTarget", - "mainBuggyLine": "5134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5169", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "area: Area;", - "mainBuggyLine": "5169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5419", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum RepeatMode", - "mainBuggyLine": "5419" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5444", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Repeat", - "mainBuggyLine": "5444" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5470", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Stretch", - "mainBuggyLine": "5470" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5496", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Round", - "mainBuggyLine": "5496" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5522", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Space", - "mainBuggyLine": "5522" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5552", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum BlurStyle", - "mainBuggyLine": "5552" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5577", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Thin", - "mainBuggyLine": "5577" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5603", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Regular", - "mainBuggyLine": "5603" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5629", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Thick", - "mainBuggyLine": "5629" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5647", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "BACKGROUND_THIN", - "mainBuggyLine": "5647" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5665", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "BACKGROUND_REGULAR", - "mainBuggyLine": "5665" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5683", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "BACKGROUND_THICK", - "mainBuggyLine": "5683" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5701", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "BACKGROUND_ULTRA_THICK", - "mainBuggyLine": "5701" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5720", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "NONE", - "mainBuggyLine": "5720" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5739", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "COMPONENT_ULTRA_THIN = 8", - "mainBuggyLine": "5739" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5758", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "COMPONENT_THIN = 9", - "mainBuggyLine": "5758" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5777", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "COMPONENT_REGULAR = 10", - "mainBuggyLine": "5777" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5796", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "COMPONENT_THICK = 11", - "mainBuggyLine": "5796" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "5815", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "COMPONENT_ULTRA_THICK = 12", - "mainBuggyLine": "5815" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "6099", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface BackgroundBlurStyleOptions", - "mainBuggyLine": "6099" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "6154", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface ForegroundBlurStyleOptions", - "mainBuggyLine": "6154" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "6261", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "scale?: number;", - "mainBuggyLine": "6261" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "6752", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface ShadowOptions", - "mainBuggyLine": "6752" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "6787", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "radius: number | Resource;", - "mainBuggyLine": "6787" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "6808", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type?: ShadowType;", - "mainBuggyLine": "6808" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "6844", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "color?: Color | string | Resource | ColoringStrategy;", - "mainBuggyLine": "6844" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "6880", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "offsetX?: number | Resource;", - "mainBuggyLine": "6880" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "6916", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "offsetY?: number | Resource;", - "mainBuggyLine": "6916" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "6937", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fill?: boolean;", - "mainBuggyLine": "6937" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "7442", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface BaseEvent", - "mainBuggyLine": "7442" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "7477", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "target: EventTarget;", - "mainBuggyLine": "7477" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "7513", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "timestamp: number;", - "mainBuggyLine": "7513" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "7549", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "source: SourceType;", - "mainBuggyLine": "7549" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "7560", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "axisHorizontal?: number;", - "mainBuggyLine": "7560" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "7560", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "axisHorizontal?: number;", - "mainBuggyLine": "7560" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "7571", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "axisVertical?: number;", - "mainBuggyLine": "7571" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "7571", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "axisVertical?: number;", - "mainBuggyLine": "7571" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "7600", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "pressure: number;", - "mainBuggyLine": "7600" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "7629", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "tiltX: number;", - "mainBuggyLine": "7629" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "7658", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "tiltY: number;", - "mainBuggyLine": "7658" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "7687", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "sourceTool: SourceTool;", - "mainBuggyLine": "7687" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "7699", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getModifierKeyState?(keys: Array): boolean;", - "mainBuggyLine": "7699" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "7729", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface BorderImageOption", - "mainBuggyLine": "7729" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "7796", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "repeat?: RepeatMode,", - "mainBuggyLine": "7796" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "7825", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "source?: string | Resource | LinearGradient,", - "mainBuggyLine": "7825" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "7932", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fill?: boolean", - "mainBuggyLine": "7932" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "7969", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface ClickEvent", - "mainBuggyLine": "7969" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "7969", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface ClickEvent", - "mainBuggyLine": "7969" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "7987", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "displayX: number;", - "mainBuggyLine": "7987" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8006", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "displayY: number;", - "mainBuggyLine": "8006" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8025", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "windowX: number;", - "mainBuggyLine": "8025" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8044", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "windowY: number;", - "mainBuggyLine": "8044" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8055", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "screenX: number;", - "mainBuggyLine": "8055" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8066", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "screenY: number;", - "mainBuggyLine": "8066" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8102", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "x: number;", - "mainBuggyLine": "8102" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8138", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "y: number;", - "mainBuggyLine": "8138" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8149", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "preventDefault: () => void;", - "mainBuggyLine": "8149" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8167", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface HoverEvent", - "mainBuggyLine": "8167" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8201", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface MouseEvent", - "mainBuggyLine": "8201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8313", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "screenX: number;", - "mainBuggyLine": "8313" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8324", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "screenY: number;", - "mainBuggyLine": "8324" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8540", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "screenX: number;", - "mainBuggyLine": "8540" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8551", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "screenY: number;", - "mainBuggyLine": "8551" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8725", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface TouchEvent", - "mainBuggyLine": "8725" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8871", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type SizeChangeCallback = (oldValue: SizeOptions, newValue: SizeOptions) => void;", - "mainBuggyLine": "8871" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8885", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type GestureRecognizerJudgeBeginCallback = (event: BaseGestureEvent, current: GestureRecognizer, recognizers: Array) => GestureJudgeResult;", - "mainBuggyLine": "8885" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8885", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type GestureRecognizerJudgeBeginCallback = (event: BaseGestureEvent, current: GestureRecognizer, recognizers: Array) => GestureJudgeResult;", - "mainBuggyLine": "8885" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8885", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type GestureRecognizerJudgeBeginCallback = (event: BaseGestureEvent, current: GestureRecognizer, recognizers: Array) => GestureJudgeResult;", - "mainBuggyLine": "8885" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8885", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_06", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [returns] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type GestureRecognizerJudgeBeginCallback = (event: BaseGestureEvent, current: GestureRecognizer, recognizers: Array) => GestureJudgeResult;", - "mainBuggyLine": "8885" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8885", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [3] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "declare type GestureRecognizerJudgeBeginCallback = (event: BaseGestureEvent, current: GestureRecognizer, recognizers: Array) => GestureJudgeResult;", - "mainBuggyLine": "8885" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8885", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type GestureRecognizerJudgeBeginCallback = (event: BaseGestureEvent, current: GestureRecognizer, recognizers: Array) => GestureJudgeResult;", - "mainBuggyLine": "8885" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8898", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type ShouldBuiltInRecognizerParallelWithCallback = (current: GestureRecognizer, others: Array) => GestureRecognizer;", - "mainBuggyLine": "8898" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8898", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type ShouldBuiltInRecognizerParallelWithCallback = (current: GestureRecognizer, others: Array) => GestureRecognizer;", - "mainBuggyLine": "8898" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8898", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_06", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [returns] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type ShouldBuiltInRecognizerParallelWithCallback = (current: GestureRecognizer, others: Array) => GestureRecognizer;", - "mainBuggyLine": "8898" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8898", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [2] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "declare type ShouldBuiltInRecognizerParallelWithCallback = (current: GestureRecognizer, others: Array) => GestureRecognizer;", - "mainBuggyLine": "8898" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8898", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type ShouldBuiltInRecognizerParallelWithCallback = (current: GestureRecognizer, others: Array) => GestureRecognizer;", - "mainBuggyLine": "8898" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "8921", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type PixelMap = import('../api/@ohos.multimedia.image').default.PixelMap;", - "mainBuggyLine": "8921" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "9003", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type UnifiedData = import('../api/@ohos.data.unifiedDataChannel').default.UnifiedData;", - "mainBuggyLine": "9003" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "9018", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type Summary = import('../api/@ohos.data.unifiedDataChannel').default.Summary;", - "mainBuggyLine": "9018" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "9033", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type UniformDataType = import('../api/@ohos.data.uniformTypeDescriptor').default.UniformDataType;", - "mainBuggyLine": "9033" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "9535", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getX(): number;", - "mainBuggyLine": "9535" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "9546", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getY(): number;", - "mainBuggyLine": "9546" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "9761", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getModifierKeyState?(keys: Array): boolean;", - "mainBuggyLine": "9761" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "9777", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type IntentionCode = import('../api/@ohos.multimodalInput.intentionCode').IntentionCode;", - "mainBuggyLine": "9777" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "10044", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getModifierKeyState?(keys: Array): boolean;", - "mainBuggyLine": "10044" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "10192", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface ContentCoverOptions", - "mainBuggyLine": "10192" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "10222", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillDismiss?: Callback;", - "mainBuggyLine": "10222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "10232", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "transition?: TransitionEffect;", - "mainBuggyLine": "10232" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "10498", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface SheetOptions", - "mainBuggyLine": "10498" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "10729", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "width?: Dimension;", - "mainBuggyLine": "10729" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "10739", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "borderWidth?: Dimension | EdgeWidths | LocalizedEdgeWidths;", - "mainBuggyLine": "10739" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "10749", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "borderColor?: ResourceColor | EdgeColors | LocalizedEdgeColors;", - "mainBuggyLine": "10749" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "10759", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "borderStyle?: BorderStyle | EdgeStyles;", - "mainBuggyLine": "10759" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "10769", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "shadow?: ShadowOptions | ShadowStyle;", - "mainBuggyLine": "10769" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "10779", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onHeightDidChange?: Callback;", - "mainBuggyLine": "10779" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "10790", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "mode?: SheetMode;", - "mainBuggyLine": "10790" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "10801", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDetentsDidChange?: Callback;", - "mainBuggyLine": "10801" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "10811", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWidthDidChange?: Callback;", - "mainBuggyLine": "10811" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "10821", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onTypeDidChange?: Callback;", - "mainBuggyLine": "10821" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "10831", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "uiContext?: UIContext;", - "mainBuggyLine": "10831" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "10868", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface StateStyles", - "mainBuggyLine": "10868" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "10903", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "normal?: any;", - "mainBuggyLine": "10903" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "10939", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "pressed?: any;", - "mainBuggyLine": "10939" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "10975", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "disabled?: any;", - "mainBuggyLine": "10975" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "11011", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "focused?: any;", - "mainBuggyLine": "11011" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "11047", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "clicked?: any;", - "mainBuggyLine": "11047" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "11068", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "selected?: object;", - "mainBuggyLine": "11068" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "11264", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "placementOnTop?: boolean;", - "mainBuggyLine": "11264" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "11832", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "transition?: TransitionEffect;", - "mainBuggyLine": "11832" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "11842", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillDismiss?: boolean | Callback;", - "mainBuggyLine": "11842" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "11931", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maskColor?: Color | string | Resource | number;", - "mainBuggyLine": "11931" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "12341", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "transition?: TransitionEffect;", - "mainBuggyLine": "12341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "12351", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillDismiss?: boolean | Callback;", - "mainBuggyLine": "12351" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "12421", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type AnimationRange = [from: T, to: T];", - "mainBuggyLine": "12421" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "12469", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "transition?: TransitionEffect;", - "mainBuggyLine": "12469" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "12479", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hoverScale?: AnimationRange;", - "mainBuggyLine": "12479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "12611", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "borderRadius?: Length | BorderRadiuses;", - "mainBuggyLine": "12611" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "12758", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "transition?: TransitionEffect;", - "mainBuggyLine": "12758" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "12778", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface MenuOptions", - "mainBuggyLine": "12778" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "12903", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableBreathingAnimation(value: boolean): void;", - "mainBuggyLine": "12903" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "13238", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "right?: Length;", - "mainBuggyLine": "13238" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "13429", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "symbolIcon?: SymbolGlyphModifier;", - "mainBuggyLine": "13429" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "13668", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum OutlineStyle", - "mainBuggyLine": "13668" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "13686", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "SOLID = 0", - "mainBuggyLine": "13686" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "13705", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "DASHED = 1", - "mainBuggyLine": "13705" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "13724", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "DOTTED = 2", - "mainBuggyLine": "13724" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "13777", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ENABLE_DEFAULT_SHADOW = 3", - "mainBuggyLine": "13777" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "13784", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ENABLE_DEFAULT_RADIUS = 4", - "mainBuggyLine": "13784" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "13831", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type ImageModifier = import('../api/arkui/ImageModifier').ImageModifier;", - "mainBuggyLine": "13831" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "13883", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "modifier?: ImageModifier;", - "mainBuggyLine": "13883" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "13892", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "numberBadge?: boolean | number;", - "mainBuggyLine": "13892" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14024", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type CircleShape = import('../api/@ohos.arkui.shape').CircleShape;", - "mainBuggyLine": "14024" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14024", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type CircleShape = import('../api/@ohos.arkui.shape').CircleShape;", - "mainBuggyLine": "14024" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14034", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type EllipseShape = import('../api/@ohos.arkui.shape').EllipseShape;", - "mainBuggyLine": "14034" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14034", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type EllipseShape = import('../api/@ohos.arkui.shape').EllipseShape;", - "mainBuggyLine": "14034" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14044", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type PathShape = import('../api/@ohos.arkui.shape').PathShape;", - "mainBuggyLine": "14044" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14044", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type PathShape = import('../api/@ohos.arkui.shape').PathShape;", - "mainBuggyLine": "14044" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14054", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type RectShape = import('../api/@ohos.arkui.shape').RectShape;", - "mainBuggyLine": "14054" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14054", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type RectShape = import('../api/@ohos.arkui.shape').RectShape;", - "mainBuggyLine": "14054" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14066", - "defectLevel": 2, - "defectType": "API_DEFINE_NAME_01", - "description": "API check error of [naming errors]: Prohibited word in [declare type optional = t | undefined;]:{option}.The word allowed is [options].", - "language": "ts", - "mainBuggyCode": "declare type Optional = T | undefined;", - "mainBuggyLine": "14066" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14066", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type Optional = T | undefined;", - "mainBuggyLine": "14066" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14098", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class CommonMethod", - "mainBuggyLine": "14098" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14114", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "14114" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14114", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "14114" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14154", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "width(value: Length): T;", - "mainBuggyLine": "14154" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14194", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "height(value: Length): T;", - "mainBuggyLine": "14194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14205", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "drawModifier(modifier: DrawModifier | undefined): T;", - "mainBuggyLine": "14205" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14217", - "defectLevel": 2, - "defectType": "API_DEFINE_NAME_01", - "description": "API check error of [naming errors]: Prohibited word in [customproperty(name: string, value: optional): t;]:{option}.The word allowed is [options].", - "language": "ts", - "mainBuggyCode": "customProperty(name: string, value: Optional): T;", - "mainBuggyLine": "14217" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14217", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "customProperty(name: string, value: Optional): T;", - "mainBuggyLine": "14217" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14240", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "expandSafeArea(types?: Array, edges?: Array): T;", - "mainBuggyLine": "14240" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14280", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "responseRegion(value: Array | Rectangle): T;", - "mainBuggyLine": "14280" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14301", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "mouseResponseRegion(value: Array | Rectangle): T;", - "mainBuggyLine": "14301" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14341", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "size(value: SizeOptions): T;", - "mainBuggyLine": "14341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14385", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constraintSize(value: ConstraintSizeOptions): T;", - "mainBuggyLine": "14385" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14397", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "touchable(value: boolean): T;", - "mainBuggyLine": "14397" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14426", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hitTestBehavior(value: HitTestMode): T;", - "mainBuggyLine": "14426" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14447", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onChildTouchTest(event: (value: Array) => TouchResult): T;", - "mainBuggyLine": "14447" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14487", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "layoutWeight(value: number | string): T;", - "mainBuggyLine": "14487" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14612", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "background(builder: CustomBuilder, options?: { align?: Alignment }): T;", - "mainBuggyLine": "14612" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14652", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "backgroundColor(value: ResourceColor): T;", - "mainBuggyLine": "14652" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14665", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "pixelRound(value: PixelRoundPolicy): T;", - "mainBuggyLine": "14665" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14726", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "backgroundImage(src: ResourceStr | PixelMap, repeat?: ImageRepeat): T;", - "mainBuggyLine": "14726" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14766", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "backgroundImageSize(value: SizeOptions | ImageSize): T;", - "mainBuggyLine": "14766" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14810", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "backgroundImagePosition(value: Position | Alignment): T;", - "mainBuggyLine": "14810" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14848", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "backgroundBlurStyle(value: BlurStyle, options?: BackgroundBlurStyleOptions): T;", - "mainBuggyLine": "14848" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14869", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "backgroundEffect(options: BackgroundEffectOptions): T;", - "mainBuggyLine": "14869" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14881", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "backgroundImageResizable(value: ResizableOptions): T;", - "mainBuggyLine": "14881" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14892", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "foregroundEffect(options: ForegroundEffectOptions): T;", - "mainBuggyLine": "14892" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14904", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "visualEffect(effect: VisualEffect): T;", - "mainBuggyLine": "14904" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14915", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "backgroundFilter(filter: Filter): T;", - "mainBuggyLine": "14915" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14926", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "foregroundFilter(filter: Filter): T;", - "mainBuggyLine": "14926" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14937", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "compositingFilter(filter: Filter): T;", - "mainBuggyLine": "14937" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "14962", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "foregroundBlurStyle(value: BlurStyle, options?: ForegroundBlurStyleOptions): T;", - "mainBuggyLine": "14962" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15002", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "opacity(value: number | Resource): T;", - "mainBuggyLine": "15002" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15046", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "border(value: BorderOptions): T;", - "mainBuggyLine": "15046" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15086", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "borderStyle(value: BorderStyle | EdgeStyles): T;", - "mainBuggyLine": "15086" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15271", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "borderImage(value: BorderImageOption): T;", - "mainBuggyLine": "15271" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15296", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "outline(value: OutlineOptions): T;", - "mainBuggyLine": "15296" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15320", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "outlineStyle(value: OutlineStyle | EdgeOutlineStyles): T;", - "mainBuggyLine": "15320" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15344", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "outlineWidth(value: Dimension | EdgeOutlineWidths): T;", - "mainBuggyLine": "15344" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15392", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "outlineRadius(value: Dimension | OutlineRadiuses): T;", - "mainBuggyLine": "15392" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15415", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "foregroundColor(value: ResourceColor | ColoringStrategy): T;", - "mainBuggyLine": "15415" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15455", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onClick(event: (event: ClickEvent) => void): T;", - "mainBuggyLine": "15455" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15475", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onHover(event: (isHover: boolean, event: HoverEvent) => void): T;", - "mainBuggyLine": "15475" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15504", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hoverEffect(value: HoverEffect): T;", - "mainBuggyLine": "15504" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15523", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onMouse(event: (event: MouseEvent) => void): T;", - "mainBuggyLine": "15523" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15552", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onTouch(event: (event: TouchEvent) => void): T;", - "mainBuggyLine": "15552" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15581", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onKeyEvent(event: (event: KeyEvent) => void): T;", - "mainBuggyLine": "15581" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15592", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onKeyPreIme(event: Callback): T;", - "mainBuggyLine": "15592" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15621", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "focusable(value: boolean): T;", - "mainBuggyLine": "15621" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15650", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onFocus(event: () => void): T;", - "mainBuggyLine": "15650" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15679", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onBlur(event: () => void): T;", - "mainBuggyLine": "15679" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15708", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "tabIndex(index: number): T;", - "mainBuggyLine": "15708" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15737", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "defaultFocus(value: boolean): T;", - "mainBuggyLine": "15737" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15766", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "groupDefaultFocus(value: boolean): T;", - "mainBuggyLine": "15766" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15795", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "focusOnTouch(value: boolean): T;", - "mainBuggyLine": "15795" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15806", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "focusBox(style: FocusBoxStyle): T;", - "mainBuggyLine": "15806" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15818", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "focusScopeId(id: string, isGroup?: boolean): T;", - "mainBuggyLine": "15818" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15830", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "focusScopePriority(scopeId: string, priority?: FocusPriority): T;", - "mainBuggyLine": "15830" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15870", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "animation(value: AnimateParam): T;", - "mainBuggyLine": "15870" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15910", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "transition(value: TransitionOptions | TransitionEffect): T;", - "mainBuggyLine": "15910" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15945", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "gesture(gesture: GestureType, mask?: GestureMask): T;", - "mainBuggyLine": "15945" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "15980", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "priorityGesture(gesture: GestureType, mask?: GestureMask): T;", - "mainBuggyLine": "15980" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16015", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "parallelGesture(gesture: GestureType, mask?: GestureMask): T;", - "mainBuggyLine": "16015" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16064", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "blur(value: number, options?: BlurOptions): T;", - "mainBuggyLine": "16064" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16076", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "linearGradientBlur(value: number, options: LinearGradientBlurOptions): T;", - "mainBuggyLine": "16076" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16087", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "motionBlur(value: MotionBlurOptions):T;", - "mainBuggyLine": "16087" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16135", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "brightness(value: number): T;", - "mainBuggyLine": "16135" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16179", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "contrast(value: number): T;", - "mainBuggyLine": "16179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16227", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "grayscale(value: number): T;", - "mainBuggyLine": "16227" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16267", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "colorBlend(value: Color | string | Resource): T;", - "mainBuggyLine": "16267" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16319", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "saturate(value: number): T;", - "mainBuggyLine": "16319" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16363", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "sepia(value: number): T;", - "mainBuggyLine": "16363" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16407", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "invert(value: number | InvertOptions): T;", - "mainBuggyLine": "16407" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16416", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "systemBarEffect(): T;", - "mainBuggyLine": "16416" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16464", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "hueRotate(value: number | string): T;", - "mainBuggyLine": "16464" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16487", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "useShadowBatching(value: boolean): T;", - "mainBuggyLine": "16487" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16499", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "useEffect(value: boolean): T;", - "mainBuggyLine": "16499" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16544", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "backdropBlur(value: number, options?: BlurOptions): T;", - "mainBuggyLine": "16544" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16587", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "freeze(value: boolean): T;", - "mainBuggyLine": "16587" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16633", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "translate(value: TranslateOptions): T;", - "mainBuggyLine": "16633" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16673", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "scale(value: ScaleOptions): T;", - "mainBuggyLine": "16673" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16702", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "gridSpan(value: number): T;", - "mainBuggyLine": "16702" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16734", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "gridOffset(value: number): T;", - "mainBuggyLine": "16734" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16777", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "rotate(value: RotateOptions): T;", - "mainBuggyLine": "16777" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16806", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "transform(value: object): T;", - "mainBuggyLine": "16806" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16846", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onAppear(event: () => void): T;", - "mainBuggyLine": "16846" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16886", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onDisAppear(event: () => void): T;", - "mainBuggyLine": "16886" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16897", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onAttach(callback: Callback): T;", - "mainBuggyLine": "16897" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16908", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDetach(callback: Callback): T;", - "mainBuggyLine": "16908" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16937", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onAreaChange(event: (oldValue: Area, newValue: Area) => void): T;", - "mainBuggyLine": "16937" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "16977", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "visibility(value: Visibility): T;", - "mainBuggyLine": "16977" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17017", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "flexGrow(value: number): T;", - "mainBuggyLine": "17017" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17057", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "flexShrink(value: number): T;", - "mainBuggyLine": "17057" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17097", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "flexBasis(value: number | string): T;", - "mainBuggyLine": "17097" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17137", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "alignSelf(value: ItemAlign): T;", - "mainBuggyLine": "17137" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17177", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "displayPriority(value: number): T;", - "mainBuggyLine": "17177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17217", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "zIndex(value: number): T;", - "mainBuggyLine": "17217" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17249", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sharedTransition(id: string, options?: sharedTransitionOptions): T;", - "mainBuggyLine": "17249" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17289", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "direction(value: Direction): T;", - "mainBuggyLine": "17289" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17329", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "align(value: Alignment): T;", - "mainBuggyLine": "17329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17531", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "enabled(value: boolean): T;", - "mainBuggyLine": "17531" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17543", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "useSizeType(value: {\n xs?: number | { span: number; offset: number };\n sm?: number | { span: number; offset: number };\n md?: number | { span: number; offset: number };\n lg?: number | { span: number; offset: number };\n }): T;", - "mainBuggyLine": "17543" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17543", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_01", - "description": "API check error of [wrong value]: The [useinstead] tag value is incorrect. Please check the usage method.", - "language": "ts", - "mainBuggyCode": "useSizeType(value: {\n xs?: number | { span: number; offset: number };\n sm?: number | { span: number; offset: number };\n md?: number | { span: number; offset: number };\n lg?: number | { span: number; offset: number };\n }): T;", - "mainBuggyLine": "17543" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17580", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "alignRules(value: AlignRuleOption): T;", - "mainBuggyLine": "17580" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17606", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "chainMode(direction: Axis, style: ChainStyle): T;", - "mainBuggyLine": "17606" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17606", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "chainMode(direction: Axis, style: ChainStyle): T;", - "mainBuggyLine": "17606" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17606", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [2] [param] tag is incorrect. Please check if it matches the [2] parameter name.", - "language": "ts", - "mainBuggyCode": "chainMode(direction: Axis, style: ChainStyle): T;", - "mainBuggyLine": "17606" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17646", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "aspectRatio(value: number): T;", - "mainBuggyLine": "17646" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17667", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "clickEffect(value: ClickEffect | null): T;", - "mainBuggyLine": "17667" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17688", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDragStart(event: (event: DragEvent, extraParams?: string) => CustomBuilder | DragItemInfo): T;", - "mainBuggyLine": "17688" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17707", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDragEnter(event: (event: DragEvent, extraParams?: string) => void): T;", - "mainBuggyLine": "17707" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17726", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDragMove(event: (event: DragEvent, extraParams?: string) => void): T;", - "mainBuggyLine": "17726" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17745", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDragLeave(event: (event: DragEvent, extraParams?: string) => void): T;", - "mainBuggyLine": "17745" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17766", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDrop(event: (event: DragEvent, extraParams?: string) => void): T;", - "mainBuggyLine": "17766" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17785", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDragEnd(event: (event: DragEvent, extraParams?: string) => void): T;", - "mainBuggyLine": "17785" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17816", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "allowDrop(value: Array | null): T;", - "mainBuggyLine": "17816" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17836", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "draggable(value: boolean): T;", - "mainBuggyLine": "17836" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17855", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dragPreview(value: CustomBuilder | DragItemInfo | string): T;", - "mainBuggyLine": "17855" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17874", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dragPreviewOptions(value: DragPreviewOptions, options?: DragInteractionOptions): T;", - "mainBuggyLine": "17874" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17884", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onPreDrag(callback: Callback): T;", - "mainBuggyLine": "17884" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17928", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "overlay(value: string | CustomBuilder, options?: { align?: Alignment; offset?: { x?: number; y?: number } }): T;", - "mainBuggyLine": "17928" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "17999", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "linearGradient(value: {\n angle?: number | string;\n direction?: GradientDirection;\n colors: Array<[ResourceColor, number]>;\n repeating?: boolean;\n }): T;", - "mainBuggyLine": "17999" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18090", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "sweepGradient(value: {\n center: [Length, Length];\n start?: number | string;\n end?: number | string;\n rotation?: number | string;\n colors: Array<[ResourceColor, number]>;\n repeating?: boolean;\n }): T;", - "mainBuggyLine": "18090" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18168", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "radialGradient(value: {\n center: [Length, Length];\n radius: number | string;\n colors: Array<[ResourceColor, number]>;\n repeating?: boolean;\n }): T;", - "mainBuggyLine": "18168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18214", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "motionPath(value: MotionPathOptions): T;", - "mainBuggyLine": "18214" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18254", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "shadow(value: ShadowOptions | ShadowStyle): T;", - "mainBuggyLine": "18254" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18267", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "blendMode(value: BlendMode, type?: BlendApplyType): T;", - "mainBuggyLine": "18267" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18278", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "clip(value: boolean): T;", - "mainBuggyLine": "18278" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18324", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [useinstead] labels.", - "language": "ts", - "mainBuggyCode": "clip(value: boolean | CircleAttribute | EllipseAttribute | PathAttribute | RectAttribute): T;", - "mainBuggyLine": "18324" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18324", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_01", - "description": "API check error of [wrong value]: The [useinstead] tag value is incorrect. Please check the usage method.", - "language": "ts", - "mainBuggyCode": "clip(value: boolean | CircleAttribute | EllipseAttribute | PathAttribute | RectAttribute): T;", - "mainBuggyLine": "18324" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18335", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "clipShape(value: CircleShape | EllipseShape | PathShape | RectShape): T;", - "mainBuggyLine": "18335" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18346", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "mask(value: ProgressMask): T;", - "mainBuggyLine": "18346" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18388", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [useinstead] labels.", - "language": "ts", - "mainBuggyCode": "mask(value: CircleAttribute | EllipseAttribute | PathAttribute | RectAttribute | ProgressMask): T;", - "mainBuggyLine": "18388" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18388", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_01", - "description": "API check error of [wrong value]: The [useinstead] tag value is incorrect. Please check the usage method.", - "language": "ts", - "mainBuggyCode": "mask(value: CircleAttribute | EllipseAttribute | PathAttribute | RectAttribute | ProgressMask): T;", - "mainBuggyLine": "18388" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18399", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maskShape(value: CircleShape | EllipseShape | PathShape | RectShape): T;", - "mainBuggyLine": "18399" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18410", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "key(value: string): T;", - "mainBuggyLine": "18410" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18450", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "id(value: string): T;", - "mainBuggyLine": "18450" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18479", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "geometryTransition(id: string): T;", - "mainBuggyLine": "18479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18501", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "geometryTransition(id: string, options?: GeometryTransitionOptions): T;", - "mainBuggyLine": "18501" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18532", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bindPopup(show: boolean, popup: PopupOptions | CustomPopupOptions): T;", - "mainBuggyLine": "18532" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18566", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bindMenu(content: Array | CustomBuilder, options?: MenuOptions): T;", - "mainBuggyLine": "18566" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18591", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bindMenu(isShow: boolean, content: Array | CustomBuilder, options?: MenuOptions): T;", - "mainBuggyLine": "18591" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18626", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bindContextMenu(content: CustomBuilder, responseType: ResponseType, options?: ContextMenuOptions): T;", - "mainBuggyLine": "18626" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18639", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bindContextMenu(isShown: boolean, content: CustomBuilder, options?: ContextMenuOptions): T;", - "mainBuggyLine": "18639" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18676", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bindContentCover(isShow: Optional, builder: CustomBuilder, type?: ModalTransition): T;", - "mainBuggyLine": "18676" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18713", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bindContentCover(isShow: Optional, builder: CustomBuilder, options?: ContentCoverOptions): T;", - "mainBuggyLine": "18713" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18750", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bindSheet(isShow: Optional, builder: CustomBuilder, options?: SheetOptions): T;", - "mainBuggyLine": "18750" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18790", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "stateStyles(value: StateStyles): T;", - "mainBuggyLine": "18790" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18810", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "restoreId(value: number): T;", - "mainBuggyLine": "18810" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18842", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onVisibleAreaChange(ratios: Array, event: (isVisible: boolean, currentRatio: number) => void): T;", - "mainBuggyLine": "18842" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18854", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sphericalEffect(value: number): T;", - "mainBuggyLine": "18854" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18866", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "lightUpEffect(value: number): T;", - "mainBuggyLine": "18866" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18877", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pixelStretchEffect(options: PixelStretchEffectOptions): T;", - "mainBuggyLine": "18877" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "18902", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "keyboardShortcut(value: string | FunctionKey, keys: Array, action?: () => void): T;", - "mainBuggyLine": "18902" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19087", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "obscured(reasons: Array): T;", - "mainBuggyLine": "19087" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19108", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "reuseId(id: string): T;", - "mainBuggyLine": "19108" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19129", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "renderFit(fitMode: RenderFit): T;", - "mainBuggyLine": "19129" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19150", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "attributeModifier(modifier: AttributeModifier): T;", - "mainBuggyLine": "19150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19161", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "gestureModifier(modifier: GestureModifier): T;", - "mainBuggyLine": "19161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19171", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "backgroundBrightness(params: BackgroundBrightnessOptions): T;", - "mainBuggyLine": "19171" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19192", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onGestureJudgeBegin(callback: (gestureInfo: GestureInfo, event: BaseGestureEvent) => GestureJudgeResult): T;", - "mainBuggyLine": "19192" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19204", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onGestureRecognizerJudgeBegin(callback: GestureRecognizerJudgeBeginCallback): T;", - "mainBuggyLine": "19204" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19215", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "shouldBuiltInRecognizerParallelWith(callback: ShouldBuiltInRecognizerParallelWithCallback): T;", - "mainBuggyLine": "19215" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19236", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "monopolizeEvents(monopolize: boolean): T;", - "mainBuggyLine": "19236" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19247", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onTouchIntercept(callback: Callback): T;", - "mainBuggyLine": "19247" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19259", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onSizeChange(event: SizeChangeCallback): T;", - "mainBuggyLine": "19259" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19296", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class CommonAttribute", - "mainBuggyLine": "19296" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19332", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface CommonInterface", - "mainBuggyLine": "19332" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19367", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(): CommonAttribute;", - "mainBuggyLine": "19367" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19400", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const CommonInstance: CommonAttribute;", - "mainBuggyLine": "19400" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19432", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Common: CommonInterface;", - "mainBuggyLine": "19432" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19464", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type CustomBuilder = (() => any) | void;", - "mainBuggyLine": "19464" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19464", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type CustomBuilder = (() => any) | void;", - "mainBuggyLine": "19464" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19476", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type FractionStop = [ number, number ];", - "mainBuggyLine": "19476" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19512", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class CommonShapeMethod", - "mainBuggyLine": "19512" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19528", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "19528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19528", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "19528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19568", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "stroke(value: ResourceColor): T;", - "mainBuggyLine": "19568" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19608", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fill(value: ResourceColor): T;", - "mainBuggyLine": "19608" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19648", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "strokeDashOffset(value: number | string): T;", - "mainBuggyLine": "19648" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19688", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "strokeLineCap(value: LineCapStyle): T;", - "mainBuggyLine": "19688" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19728", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "strokeLineJoin(value: LineJoinStyle): T;", - "mainBuggyLine": "19728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19768", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "strokeMiterLimit(value: number | string): T;", - "mainBuggyLine": "19768" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19808", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "strokeOpacity(value: number | string | Resource): T;", - "mainBuggyLine": "19808" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19848", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fillOpacity(value: number | string | Resource): T;", - "mainBuggyLine": "19848" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19888", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "strokeWidth(value: Length): T;", - "mainBuggyLine": "19888" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19928", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "antiAlias(value: boolean): T;", - "mainBuggyLine": "19928" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "19968", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "strokeDashArray(value: Array): T;", - "mainBuggyLine": "19968" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20117", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface PixelRoundPolicy", - "mainBuggyLine": "20117" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20129", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "start?: PixelRoundCalcPolicy;", - "mainBuggyLine": "20129" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20142", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "top?: PixelRoundCalcPolicy;", - "mainBuggyLine": "20142" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20155", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "end?: PixelRoundCalcPolicy;", - "mainBuggyLine": "20155" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20168", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "bottom?: PixelRoundCalcPolicy;", - "mainBuggyLine": "20168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20260", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [deprecated] labels.", - "language": "ts", - "mainBuggyCode": " declare interface LayoutBorderInfo", - "mainBuggyLine": "20260" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20270", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [deprecated] labels.", - "language": "ts", - "mainBuggyCode": "borderWidth: EdgeWidths;", - "mainBuggyLine": "20270" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20281", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [deprecated] labels.", - "language": "ts", - "mainBuggyCode": "margin: Margin,", - "mainBuggyLine": "20281" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20292", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [deprecated] labels.", - "language": "ts", - "mainBuggyCode": "padding: Padding,", - "mainBuggyLine": "20292" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20304", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [deprecated] labels.", - "language": "ts", - "mainBuggyCode": " declare interface LayoutInfo", - "mainBuggyLine": "20304" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20314", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [deprecated] labels.", - "language": "ts", - "mainBuggyCode": "position: Position,", - "mainBuggyLine": "20314" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20325", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [deprecated] labels.", - "language": "ts", - "mainBuggyCode": "constraint: ConstraintSizeOptions,", - "mainBuggyLine": "20325" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20337", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [deprecated] labels.", - "language": "ts", - "mainBuggyCode": " declare interface LayoutChild", - "mainBuggyLine": "20337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20347", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [deprecated] labels.", - "language": "ts", - "mainBuggyCode": "name: string,", - "mainBuggyLine": "20347" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20358", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [deprecated] labels.", - "language": "ts", - "mainBuggyCode": "id: string,", - "mainBuggyLine": "20358" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20369", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [deprecated] labels.", - "language": "ts", - "mainBuggyCode": "constraint: ConstraintSizeOptions,", - "mainBuggyLine": "20369" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20380", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [deprecated] labels.", - "language": "ts", - "mainBuggyCode": "borderInfo: LayoutBorderInfo,", - "mainBuggyLine": "20380" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20391", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [deprecated] labels.", - "language": "ts", - "mainBuggyCode": "position: Position,", - "mainBuggyLine": "20391" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20402", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [deprecated] labels.", - "language": "ts", - "mainBuggyCode": "measure(childConstraint: ConstraintSizeOptions),", - "mainBuggyLine": "20402" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20413", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [deprecated] labels.", - "language": "ts", - "mainBuggyCode": "layout(childLayoutInfo: LayoutInfo),", - "mainBuggyLine": "20413" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20433", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface GeometryInfo", - "mainBuggyLine": "20433" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20556", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getMargin() : DirectionalEdgesT,", - "mainBuggyLine": "20556" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20566", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPadding() : DirectionalEdgesT,", - "mainBuggyLine": "20566" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20576", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getBorderWidth() : DirectionalEdgesT,", - "mainBuggyLine": "20576" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20616", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "measure(constraint: ConstraintSizeOptions) : MeasureResult,", - "mainBuggyLine": "20616" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20626", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getMargin() : DirectionalEdgesT,", - "mainBuggyLine": "20626" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20636", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPadding() : DirectionalEdgesT,", - "mainBuggyLine": "20636" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20646", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getBorderWidth() : DirectionalEdgesT,", - "mainBuggyLine": "20646" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20723", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface MeasureResult", - "mainBuggyLine": "20723" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20734", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type NavDestinationInfo = import('../api/@ohos.arkui.observer').default.NavDestinationInfo;", - "mainBuggyLine": "20734" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20763", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type UIContext = import('../api/@ohos.arkui.UIContext').UIContext;", - "mainBuggyLine": "20763" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20772", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type DrawContext = import('../api/arkui/Graphics').DrawContext;", - "mainBuggyLine": "20772" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20839", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class CustomComponent", - "mainBuggyLine": "20839" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20870", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "build(): void;", - "mainBuggyLine": "20870" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20910", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "aboutToAppear?(): void;", - "mainBuggyLine": "20910" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20950", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "aboutToDisappear?(): void;", - "mainBuggyLine": "20950" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20969", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "aboutToReuse?(params: { [key: string]: unknown }): void;", - "mainBuggyLine": "20969" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20986", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "aboutToRecycle?(): void;", - "mainBuggyLine": "20986" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "20997", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillApplyTheme?(theme: Theme): void;", - "mainBuggyLine": "20997" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21010", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [useinstead] labels.", - "language": "ts", - "mainBuggyCode": "onLayout?(children: Array, constraint: ConstraintSizeOptions): void;", - "mainBuggyLine": "21010" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21010", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onLayout?(children: Array, constraint: ConstraintSizeOptions): void;", - "mainBuggyLine": "21010" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21010", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_01", - "description": "API check error of [wrong value]: The [useinstead] tag value is incorrect. Please check the usage method.", - "language": "ts", - "mainBuggyCode": "onLayout?(children: Array, constraint: ConstraintSizeOptions): void;", - "mainBuggyLine": "21010" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21033", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onPlaceChildren?(selfLayoutInfo: GeometryInfo, children: Array, constraint: ConstraintSizeOptions): void;", - "mainBuggyLine": "21033" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21046", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [useinstead] labels.", - "language": "ts", - "mainBuggyCode": "onMeasure?(children: Array, constraint: ConstraintSizeOptions): void;", - "mainBuggyLine": "21046" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21046", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onMeasure?(children: Array, constraint: ConstraintSizeOptions): void;", - "mainBuggyLine": "21046" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21046", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_01", - "description": "API check error of [wrong value]: The [useinstead] tag value is incorrect. Please check the usage method.", - "language": "ts", - "mainBuggyCode": "onMeasure?(children: Array, constraint: ConstraintSizeOptions): void;", - "mainBuggyLine": "21046" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21069", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onMeasureSize?(selfLayoutInfo: GeometryInfo, children: Array, constraint: ConstraintSizeOptions): SizeResult;", - "mainBuggyLine": "21069" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21098", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onPageShow?(): void;", - "mainBuggyLine": "21098" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21127", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onPageHide?(): void;", - "mainBuggyLine": "21127" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21152", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onFormRecycle?(): string;", - "mainBuggyLine": "21152" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21173", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onFormRecover?(statusData: string): void;", - "mainBuggyLine": "21173" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21209", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onBackPress?(): void | boolean;", - "mainBuggyLine": "21209" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21235", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pageTransition?(): void;", - "mainBuggyLine": "21235" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21254", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getUIContext(): UIContext;", - "mainBuggyLine": "21254" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21264", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getUniqueId(): number;", - "mainBuggyLine": "21264" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21283", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "queryNavDestinationInfo(): NavDestinationInfo | undefined;", - "mainBuggyLine": "21283" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21293", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "queryNavigationInfo(): NavigationInfo | undefined;", - "mainBuggyLine": "21293" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21303", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "queryRouterPageInfo(): RouterPageInfo | undefined;", - "mainBuggyLine": "21303" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21314", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDidBuild?(): void;", - "mainBuggyLine": "21314" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21332", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class View", - "mainBuggyLine": "21332" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21352", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "create(value: any): any;", - "mainBuggyLine": "21352" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21647", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "edgeEffect(edgeEffect: EdgeEffect, options?: EdgeEffectOptions): T;", - "mainBuggyLine": "21647" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21707", - "defectLevel": 2, - "defectType": "API_DEFINE_NAME_01", - "description": "API check error of [naming errors]: Prohibited word in [onwillscroll(handler: optional): t;]:{option}.The word allowed is [options].", - "language": "ts", - "mainBuggyCode": "onWillScroll(handler: Optional): T;", - "mainBuggyLine": "21707" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21707", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillScroll(handler: Optional): T;", - "mainBuggyLine": "21707" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21719", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDidScroll(handler: OnScrollCallback): T;", - "mainBuggyLine": "21719" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21813", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type OnWillScrollCallback = \n(scrollOffset: number, scrollState: ScrollState, scrollSource: ScrollSource) => void | ScrollResult;", - "mainBuggyLine": "21813" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21813", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type OnWillScrollCallback = \n(scrollOffset: number, scrollState: ScrollState, scrollSource: ScrollSource) => void | ScrollResult;", - "mainBuggyLine": "21813" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21813", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type OnWillScrollCallback = \n(scrollOffset: number, scrollState: ScrollState, scrollSource: ScrollSource) => void | ScrollResult;", - "mainBuggyLine": "21813" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21813", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_06", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [returns] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type OnWillScrollCallback = \n(scrollOffset: number, scrollState: ScrollState, scrollSource: ScrollSource) => void | ScrollResult;", - "mainBuggyLine": "21813" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21813", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [3] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "declare type OnWillScrollCallback = \n(scrollOffset: number, scrollState: ScrollState, scrollSource: ScrollSource) => void | ScrollResult;", - "mainBuggyLine": "21813" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21813", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type OnWillScrollCallback = \n(scrollOffset: number, scrollState: ScrollState, scrollSource: ScrollSource) => void | ScrollResult;", - "mainBuggyLine": "21813" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21826", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type OnScrollCallback = (scrollOffset: number, scrollState: ScrollState) => void;", - "mainBuggyLine": "21826" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21826", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type OnScrollCallback = (scrollOffset: number, scrollState: ScrollState) => void;", - "mainBuggyLine": "21826" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21826", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [2] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "declare type OnScrollCallback = (scrollOffset: number, scrollState: ScrollState) => void;", - "mainBuggyLine": "21826" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21826", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type OnScrollCallback = (scrollOffset: number, scrollState: ScrollState) => void;", - "mainBuggyLine": "21826" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21838", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type OnMoveHandler = (from: number, to: number) => void;", - "mainBuggyLine": "21838" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21838", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type OnMoveHandler = (from: number, to: number) => void;", - "mainBuggyLine": "21838" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21838", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [2] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "declare type OnMoveHandler = (from: number, to: number) => void;", - "mainBuggyLine": "21838" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21838", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type OnMoveHandler = (from: number, to: number) => void;", - "mainBuggyLine": "21838" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "21857", - "defectLevel": 2, - "defectType": "API_DEFINE_NAME_01", - "description": "API check error of [naming errors]: Prohibited word in [onmove(handler: optional): t;]:{option}.The word allowed is [options].", - "language": "ts", - "mainBuggyCode": "onMove(handler: Optional): T;", - "mainBuggyLine": "21857" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "22386", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": " declare interface Callback", - "mainBuggyLine": "22386" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "22409", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type HoverCallback = (isHover: boolean, event: HoverEvent) => void", - "mainBuggyLine": "22409" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "22453", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type VisibleAreaChangeCallback = (isVisible: boolean, currentRatio: number) => void;", - "mainBuggyLine": "22453" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "22453", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type VisibleAreaChangeCallback = (isVisible: boolean, currentRatio: number) => void;", - "mainBuggyLine": "22453" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "22453", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [2] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "declare type VisibleAreaChangeCallback = (isVisible: boolean, currentRatio: number) => void;", - "mainBuggyLine": "22453" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "22453", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type VisibleAreaChangeCallback = (isVisible: boolean, currentRatio: number) => void;", - "mainBuggyLine": "22453" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "204", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [ComponentV2] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "declare const ComponentV2: ClassDecorator;", - "mainBuggyLine": "204" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "349", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [ObservedV2] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "declare const ObservedV2: ClassDecorator;", - "mainBuggyLine": "349" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "433", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [Local] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "declare const Local: PropertyDecorator;", - "mainBuggyLine": "433" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "442", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [Param] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "declare const Param: PropertyDecorator;", - "mainBuggyLine": "442" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "451", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [Once] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "declare const Once: PropertyDecorator;", - "mainBuggyLine": "451" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "460", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [Event] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "declare const Event: PropertyDecorator;", - "mainBuggyLine": "460" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "511", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [Track] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "declare const Track: PropertyDecorator;", - "mainBuggyLine": "511" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "521", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [Trace] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "declare const Trace: PropertyDecorator;", - "mainBuggyLine": "521" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "682", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [Provider] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "declare const Provider: (aliasName?: string) => PropertyDecorator;", - "mainBuggyLine": "682" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "722", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [Consumer] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "declare const Consumer: (aliasName?: string) => PropertyDecorator;", - "mainBuggyLine": "722" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "731", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [Computed] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "declare const Computed: MethodDecorator;", - "mainBuggyLine": "731" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@internal/component/ets/common.d.ts", - "codeContextStaerLine": "931", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [Monitor] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "declare const Monitor: MonitorDecorator;", - "mainBuggyLine": "931" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "56", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static ref(propName: string): AbstractProperty | undefined;", - "mainBuggyLine": "56" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "71", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static setAndRef(propName: string, defaultValue: T): AbstractProperty;", - "mainBuggyLine": "71" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "84", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static Link(propName: string): any;", - "mainBuggyLine": "84" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "124", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static SetAndLink(propName: string, defaultValue: T): SubscribedAbstractProperty;", - "mainBuggyLine": "124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "177", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static Prop(propName: string): any;", - "mainBuggyLine": "177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "217", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static SetAndProp(propName: string, defaultValue: S): SubscribedAbstractProperty;", - "mainBuggyLine": "217" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "279", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static Has(propName: string): boolean;", - "mainBuggyLine": "279" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "319", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static Get(propName: string): T | undefined;", - "mainBuggyLine": "319" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "359", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static Set(propName: string, newValue: T): boolean;", - "mainBuggyLine": "359" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "418", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static SetOrCreate(propName: string, newValue: T): void;", - "mainBuggyLine": "418" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "483", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static Delete(propName: string): boolean;", - "mainBuggyLine": "483" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "542", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static Keys(): IterableIterator;", - "mainBuggyLine": "542" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "576", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static staticClear(): boolean;", - "mainBuggyLine": "576" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "589", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static Clear(): boolean;", - "mainBuggyLine": "589" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "623", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static IsMutable(propName: string): boolean;", - "mainBuggyLine": "623" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "635", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static Size(): number;", - "mainBuggyLine": "635" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "767", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare abstract class SubscribedAbstractProperty", - "mainBuggyLine": "767" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "776", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "protected subscribers_: Set;", - "mainBuggyLine": "776" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "785", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "private id_;", - "mainBuggyLine": "785" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "785", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "private id_;", - "mainBuggyLine": "785" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "794", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "private info_?;", - "mainBuggyLine": "794" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "794", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "private info_?;", - "mainBuggyLine": "794" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "803", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(\n /**\n * Subscriber IPropertySubscriber.\n *\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @systemapi\n * @since 7\n *\n */\n subscribeMe?: IPropertySubscriber,\n /**\n * Subscriber info.\n *\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @systemapi\n * @since 7\n *\n */\n info?: string,\n );", - "mainBuggyLine": "803" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "832", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "id(): number;", - "mainBuggyLine": "832" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "853", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "info(): string;", - "mainBuggyLine": "853" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "888", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "abstract get(): T;", - "mainBuggyLine": "888" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "939", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "abstract set(newValue: T): void;", - "mainBuggyLine": "939" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "951", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createTwoWaySync(subscribeMe?: IPropertySubscriber, info?: string): SyncedPropertyTwoWay;", - "mainBuggyLine": "951" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "963", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createOneWaySync(subscribeMe?: IPropertySubscriber, info?: string): SyncedPropertyOneWay;", - "mainBuggyLine": "963" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "973", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "unlinkSuscriber(subscriberId: number): void;", - "mainBuggyLine": "973" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "983", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "protected notifyHasChanged(newValue: T): void;", - "mainBuggyLine": "983" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "992", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "protected notifyPropertyRead(): void;", - "mainBuggyLine": "992" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1002", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "numberOfSubscrbers(): number;", - "mainBuggyLine": "1002" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1025", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "abstract aboutToBeDeleted(): void;", - "mainBuggyLine": "1025" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1066", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [implements] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare class SyncedPropertyTwoWay", - "mainBuggyLine": "1066" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1077", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "private source_;", - "mainBuggyLine": "1077" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1140", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [implements] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare class SyncedPropertyOneWay", - "mainBuggyLine": "1140" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1151", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "private wrappedValue_;", - "mainBuggyLine": "1151" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1160", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "private source_;", - "mainBuggyLine": "1160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1223", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ISinglePropertyChangeSubscriber", - "mainBuggyLine": "1223" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1250", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "private owningProperties_: Set;", - "mainBuggyLine": "1250" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1389", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "1389" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1402", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static EnvProp(key: string, value: S): boolean;", - "mainBuggyLine": "1402" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1442", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static EnvProps(\n props: {\n key: string;\n defaultValue: any;\n }[],\n ): void;", - "mainBuggyLine": "1442" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1477", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static Keys(): Array;", - "mainBuggyLine": "1477" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1587", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(appStorage: AppStorage, storage: Storage);", - "mainBuggyLine": "1587" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1599", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static PersistProp(key: string, defaultValue: T): void;", - "mainBuggyLine": "1599" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1637", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static DeleteProp(key: string): void;", - "mainBuggyLine": "1637" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1667", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static PersistProps(\n properties: {\n key: string;\n defaultValue: any;\n }[],\n ): void;", - "mainBuggyLine": "1667" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1707", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static Keys(): Array;", - "mainBuggyLine": "1707" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1778", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class LocalStorage", - "mainBuggyLine": "1778" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1812", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor(initializingProperties?: Object);", - "mainBuggyLine": "1812" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1825", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [useinstead] labels.", - "language": "ts", - "mainBuggyCode": "static GetShared(): LocalStorage;", - "mainBuggyLine": "1825" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1825", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static GetShared(): LocalStorage;", - "mainBuggyLine": "1825" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1848", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "static getShared(): LocalStorage;", - "mainBuggyLine": "1848" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1860", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "public ref(propName: string): AbstractProperty | undefined;", - "mainBuggyLine": "1860" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1875", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "public setAndRef(propName: string, defaultValue: T): AbstractProperty;", - "mainBuggyLine": "1875" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1913", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "has(propName: string): boolean;", - "mainBuggyLine": "1913" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1945", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "keys(): IterableIterator;", - "mainBuggyLine": "1945" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "1977", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "size(): number;", - "mainBuggyLine": "1977" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "2012", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "get(propName: string): T | undefined;", - "mainBuggyLine": "2012" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "2067", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "set(propName: string, newValue: T): boolean;", - "mainBuggyLine": "2067" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "2125", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "setOrCreate(propName: string, newValue: T): boolean;", - "mainBuggyLine": "2125" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "2163", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "link(propName: string): SubscribedAbstractProperty;", - "mainBuggyLine": "2163" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "2218", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "setAndLink(propName: string, defaultValue: T): SubscribedAbstractProperty;", - "mainBuggyLine": "2218" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "2256", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "prop(propName: string): SubscribedAbstractProperty;", - "mainBuggyLine": "2256" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "2311", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "setAndProp(propName: string, defaultValue: S): SubscribedAbstractProperty;", - "mainBuggyLine": "2311" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "2376", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "delete(propName: string): boolean;", - "mainBuggyLine": "2376" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts", - "codeContextStaerLine": "2414", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "clear(): boolean;", - "mainBuggyLine": "2414" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/counter.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface CounterInterface", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/counter.d.ts", - "codeContextStaerLine": "90", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(): CounterAttribute;", - "mainBuggyLine": "90" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/counter.d.ts", - "codeContextStaerLine": "127", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class CounterAttribute", - "mainBuggyLine": "127" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/counter.d.ts", - "codeContextStaerLine": "166", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onInc(event: () => void): CounterAttribute;", - "mainBuggyLine": "166" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/counter.d.ts", - "codeContextStaerLine": "206", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onDec(event: () => void): CounterAttribute;", - "mainBuggyLine": "206" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/counter.d.ts", - "codeContextStaerLine": "227", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableDec(value: boolean): CounterAttribute;", - "mainBuggyLine": "227" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/counter.d.ts", - "codeContextStaerLine": "248", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableInc(value: boolean): CounterAttribute;", - "mainBuggyLine": "248" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/counter.d.ts", - "codeContextStaerLine": "281", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const CounterInstance: CounterAttribute;", - "mainBuggyLine": "281" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/counter.d.ts", - "codeContextStaerLine": "313", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Counter: CounterInterface;", - "mainBuggyLine": "313" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/custom_dialog_controller.d.ts", - "codeContextStaerLine": "389", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillDismiss?: Callback;", - "mainBuggyLine": "389" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/custom_dialog_controller.d.ts", - "codeContextStaerLine": "399", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "width?: Dimension;", - "mainBuggyLine": "399" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/custom_dialog_controller.d.ts", - "codeContextStaerLine": "409", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "height?: Dimension;", - "mainBuggyLine": "409" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/custom_dialog_controller.d.ts", - "codeContextStaerLine": "419", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "borderWidth?: Dimension | EdgeWidths;", - "mainBuggyLine": "419" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/custom_dialog_controller.d.ts", - "codeContextStaerLine": "429", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "borderColor?: ResourceColor | EdgeColors;", - "mainBuggyLine": "429" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/custom_dialog_controller.d.ts", - "codeContextStaerLine": "439", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "borderStyle?: BorderStyle | EdgeStyles;", - "mainBuggyLine": "439" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/custom_dialog_controller.d.ts", - "codeContextStaerLine": "449", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "shadow?: ShadowOptions | ShadowStyle;", - "mainBuggyLine": "449" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/custom_dialog_controller.d.ts", - "codeContextStaerLine": "460", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "backgroundBlurStyle?: BlurStyle;", - "mainBuggyLine": "460" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum DataPanelType", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Line", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts", - "codeContextStaerLine": "118", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Circle", - "mainBuggyLine": "118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts", - "codeContextStaerLine": "134", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type ColorStop = {\n /**\n * Color property.\n * @type { ResourceColor } color - the color value.\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n */\n /**\n * Color property.\n * @type { ResourceColor } color - the color value.\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n */\n color: ResourceColor;\n\n /**\n * Offset property.\n * @type { Length } offset - the color offset.\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n */\n /**\n * Offset property.\n * @type { Length } offset - the color offset.\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n */\n offset: Length;\n}", - "mainBuggyLine": "134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts", - "codeContextStaerLine": "223", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface DataPanelShadowOptions", - "mainBuggyLine": "223" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts", - "codeContextStaerLine": "280", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface DataPanelOptions", - "mainBuggyLine": "280" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts", - "codeContextStaerLine": "315", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "values: number[];", - "mainBuggyLine": "315" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts", - "codeContextStaerLine": "351", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "max?: number;", - "mainBuggyLine": "351" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts", - "codeContextStaerLine": "387", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "type?: DataPanelType;", - "mainBuggyLine": "387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts", - "codeContextStaerLine": "424", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface DataPanelInterface", - "mainBuggyLine": "424" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts", - "codeContextStaerLine": "463", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(options: DataPanelOptions): DataPanelAttribute;", - "mainBuggyLine": "463" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts", - "codeContextStaerLine": "474", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface DataPanelConfiguration", - "mainBuggyLine": "474" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts", - "codeContextStaerLine": "530", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class DataPanelAttribute", - "mainBuggyLine": "530" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts", - "codeContextStaerLine": "569", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "closeEffect(value: boolean): DataPanelAttribute;", - "mainBuggyLine": "569" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts", - "codeContextStaerLine": "590", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "valueColors(value: Array): DataPanelAttribute;", - "mainBuggyLine": "590" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts", - "codeContextStaerLine": "611", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "trackBackgroundColor(value: ResourceColor): DataPanelAttribute;", - "mainBuggyLine": "611" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts", - "codeContextStaerLine": "632", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "strokeWidth(value: Length): DataPanelAttribute;", - "mainBuggyLine": "632" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts", - "codeContextStaerLine": "653", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "trackShadow(value: DataPanelShadowOptions): DataPanelAttribute;", - "mainBuggyLine": "653" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts", - "codeContextStaerLine": "664", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contentModifier(modifier: ContentModifier): DataPanelAttribute;", - "mainBuggyLine": "664" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts", - "codeContextStaerLine": "697", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const DataPanel: DataPanelInterface", - "mainBuggyLine": "697" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts", - "codeContextStaerLine": "729", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const DataPanelInstance: DataPanelAttribute;", - "mainBuggyLine": "729" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/date_picker.d.ts", - "codeContextStaerLine": "411", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onChange(callback: (value: DatePickerResult) => void): DatePickerAttribute;", - "mainBuggyLine": "411" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/date_picker.d.ts", - "codeContextStaerLine": "459", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface DatePickerDialogOptions", - "mainBuggyLine": "459" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/date_picker.d.ts", - "codeContextStaerLine": "589", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "acceptButtonStyle?: PickerDialogButtonStyle;", - "mainBuggyLine": "589" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/date_picker.d.ts", - "codeContextStaerLine": "599", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "cancelButtonStyle?: PickerDialogButtonStyle;", - "mainBuggyLine": "599" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/date_picker.d.ts", - "codeContextStaerLine": "686", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onAccept?: (value: DatePickerResult) => void;", - "mainBuggyLine": "686" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/date_picker.d.ts", - "codeContextStaerLine": "723", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onChange?: (value: DatePickerResult) => void;", - "mainBuggyLine": "723" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/date_picker.d.ts", - "codeContextStaerLine": "835", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillAppear?: () => void;", - "mainBuggyLine": "835" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/date_picker.d.ts", - "codeContextStaerLine": "845", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillDisappear?: () => void;", - "mainBuggyLine": "845" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/date_picker.d.ts", - "codeContextStaerLine": "855", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "shadow?: ShadowOptions | ShadowStyle;", - "mainBuggyLine": "855" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/date_picker.d.ts", - "codeContextStaerLine": "865", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dateTimeOptions?: DateTimeOptions;", - "mainBuggyLine": "865" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/divider.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface DividerInterface", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/divider.d.ts", - "codeContextStaerLine": "90", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(): DividerAttribute;", - "mainBuggyLine": "90" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/divider.d.ts", - "codeContextStaerLine": "127", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class DividerAttribute", - "mainBuggyLine": "127" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/divider.d.ts", - "codeContextStaerLine": "170", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "vertical(value: boolean): DividerAttribute;", - "mainBuggyLine": "170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/divider.d.ts", - "codeContextStaerLine": "210", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "color(value: ResourceColor): DividerAttribute;", - "mainBuggyLine": "210" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/divider.d.ts", - "codeContextStaerLine": "250", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "strokeWidth(value: number | string): DividerAttribute;", - "mainBuggyLine": "250" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/divider.d.ts", - "codeContextStaerLine": "290", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "lineCap(value: LineCapStyle): DividerAttribute;", - "mainBuggyLine": "290" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/divider.d.ts", - "codeContextStaerLine": "323", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Divider: DividerInterface;", - "mainBuggyLine": "323" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/divider.d.ts", - "codeContextStaerLine": "355", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const DividerInstance: DividerAttribute;", - "mainBuggyLine": "355" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/ellipse.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface EllipseInterface", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/ellipse.d.ts", - "codeContextStaerLine": "94", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "new (value?: { width?: string | number; height?: string | number }): EllipseAttribute;", - "mainBuggyLine": "94" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/ellipse.d.ts", - "codeContextStaerLine": "134", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(value?: { width?: string | number; height?: string | number }): EllipseAttribute;", - "mainBuggyLine": "134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/ellipse.d.ts", - "codeContextStaerLine": "163", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class EllipseAttribute", - "mainBuggyLine": "163" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/ellipse.d.ts", - "codeContextStaerLine": "195", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Ellipse: EllipseInterface;", - "mainBuggyLine": "195" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/ellipse.d.ts", - "codeContextStaerLine": "227", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const EllipseInstance: EllipseAttribute;", - "mainBuggyLine": "227" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "40", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum CheckBoxShape", - "mainBuggyLine": "40" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "58", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "CIRCLE = 0", - "mainBuggyLine": "58" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "77", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "ROUNDED_SQUARE = 1", - "mainBuggyLine": "77" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "114", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum Color", - "mainBuggyLine": "114" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "145", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "White", - "mainBuggyLine": "145" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "177", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Black", - "mainBuggyLine": "177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "209", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Blue", - "mainBuggyLine": "209" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "241", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Brown", - "mainBuggyLine": "241" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "273", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Gray", - "mainBuggyLine": "273" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "305", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Green", - "mainBuggyLine": "305" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "337", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Grey", - "mainBuggyLine": "337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "369", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Orange", - "mainBuggyLine": "369" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "401", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Pink", - "mainBuggyLine": "401" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "433", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Red", - "mainBuggyLine": "433" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "465", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Yellow", - "mainBuggyLine": "465" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "491", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Transparent", - "mainBuggyLine": "491" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "598", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum ImageFit", - "mainBuggyLine": "598" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "629", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Contain", - "mainBuggyLine": "629" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "661", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Cover", - "mainBuggyLine": "661" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "693", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Auto", - "mainBuggyLine": "693" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "725", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Fill", - "mainBuggyLine": "725" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "757", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "ScaleDown", - "mainBuggyLine": "757" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "789", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "None", - "mainBuggyLine": "789" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "826", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum BorderStyle", - "mainBuggyLine": "826" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "857", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Dotted", - "mainBuggyLine": "857" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "889", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Dashed", - "mainBuggyLine": "889" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "921", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Solid", - "mainBuggyLine": "921" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "958", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum LineJoinStyle", - "mainBuggyLine": "958" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "989", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Miter", - "mainBuggyLine": "989" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "1021", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Round", - "mainBuggyLine": "1021" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "1053", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Bevel", - "mainBuggyLine": "1053" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "1482", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum AnimationStatus", - "mainBuggyLine": "1482" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "1506", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Initial", - "mainBuggyLine": "1506" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "1531", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Running", - "mainBuggyLine": "1531" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "1556", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Paused", - "mainBuggyLine": "1556" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "1581", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Stopped", - "mainBuggyLine": "1581" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "1618", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum Curve", - "mainBuggyLine": "1618" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "1649", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Linear", - "mainBuggyLine": "1649" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "1681", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Ease", - "mainBuggyLine": "1681" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "1713", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "EaseIn", - "mainBuggyLine": "1713" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "1745", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "EaseOut", - "mainBuggyLine": "1745" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "1777", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "EaseInOut", - "mainBuggyLine": "1777" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "1809", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "FastOutSlowIn", - "mainBuggyLine": "1809" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "1841", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "LinearOutSlowIn", - "mainBuggyLine": "1841" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "1873", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "FastOutLinearIn", - "mainBuggyLine": "1873" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "1905", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "ExtremeDeceleration", - "mainBuggyLine": "1905" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "1937", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Sharp", - "mainBuggyLine": "1937" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "1969", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Rhythm", - "mainBuggyLine": "1969" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "2001", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Smooth", - "mainBuggyLine": "2001" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "2033", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Friction", - "mainBuggyLine": "2033" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "2062", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum FillMode", - "mainBuggyLine": "2062" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "2086", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "None", - "mainBuggyLine": "2086" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "2111", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Forwards", - "mainBuggyLine": "2111" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "2136", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Backwards", - "mainBuggyLine": "2136" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "2161", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Both", - "mainBuggyLine": "2161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "2198", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum PlayMode", - "mainBuggyLine": "2198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "2229", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Normal", - "mainBuggyLine": "2229" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "2261", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Reverse", - "mainBuggyLine": "2261" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "2293", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Alternate", - "mainBuggyLine": "2293" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "2325", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "AlternateReverse", - "mainBuggyLine": "2325" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "2527", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "Center", - "mainBuggyLine": "2527" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "2559", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "Baseline", - "mainBuggyLine": "2559" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "2591", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "Middle", - "mainBuggyLine": "2591" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "2838", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum Direction", - "mainBuggyLine": "2838" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "2869", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Ltr", - "mainBuggyLine": "2869" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "2901", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Rtl", - "mainBuggyLine": "2901" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "2933", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Auto", - "mainBuggyLine": "2933" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "2970", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum BarState", - "mainBuggyLine": "2970" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3001", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Off", - "mainBuggyLine": "3001" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3033", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Auto", - "mainBuggyLine": "3033" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3065", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "On", - "mainBuggyLine": "3065" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3102", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum EdgeEffect", - "mainBuggyLine": "3102" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3133", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Spring", - "mainBuggyLine": "3133" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3165", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Fade", - "mainBuggyLine": "3165" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3197", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "None", - "mainBuggyLine": "3197" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3234", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum Alignment", - "mainBuggyLine": "3234" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3265", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "TopStart", - "mainBuggyLine": "3265" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3297", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Top", - "mainBuggyLine": "3297" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3329", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "TopEnd", - "mainBuggyLine": "3329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3361", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Start", - "mainBuggyLine": "3361" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3393", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Center", - "mainBuggyLine": "3393" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3425", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "End", - "mainBuggyLine": "3425" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3457", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "BottomStart", - "mainBuggyLine": "3457" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3489", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Bottom", - "mainBuggyLine": "3489" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3521", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "BottomEnd", - "mainBuggyLine": "3521" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3558", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum TransitionType", - "mainBuggyLine": "3558" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3589", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "All", - "mainBuggyLine": "3589" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3621", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Insert", - "mainBuggyLine": "3621" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3653", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Delete", - "mainBuggyLine": "3653" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3762", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum Visibility", - "mainBuggyLine": "3762" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3793", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Visible", - "mainBuggyLine": "3793" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3825", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Hidden", - "mainBuggyLine": "3825" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3857", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "None", - "mainBuggyLine": "3857" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3894", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum LineCapStyle", - "mainBuggyLine": "3894" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3925", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Butt", - "mainBuggyLine": "3925" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3957", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Round", - "mainBuggyLine": "3957" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "3989", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Square", - "mainBuggyLine": "3989" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4026", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum Axis", - "mainBuggyLine": "4026" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4057", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Vertical", - "mainBuggyLine": "4057" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4089", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Horizontal", - "mainBuggyLine": "4089" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4126", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum HorizontalAlign", - "mainBuggyLine": "4126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4157", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Start", - "mainBuggyLine": "4157" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4189", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Center", - "mainBuggyLine": "4189" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4221", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "End", - "mainBuggyLine": "4221" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4258", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum FlexAlign", - "mainBuggyLine": "4258" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4293", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Start", - "mainBuggyLine": "4293" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4329", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Center", - "mainBuggyLine": "4329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4365", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "End", - "mainBuggyLine": "4365" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4405", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "SpaceBetween", - "mainBuggyLine": "4405" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4445", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "SpaceAround", - "mainBuggyLine": "4445" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4485", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "SpaceEvenly", - "mainBuggyLine": "4485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4522", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum ItemAlign", - "mainBuggyLine": "4522" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4553", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Auto", - "mainBuggyLine": "4553" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4585", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Start", - "mainBuggyLine": "4585" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4617", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Center", - "mainBuggyLine": "4617" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4649", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "End", - "mainBuggyLine": "4649" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4681", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Baseline", - "mainBuggyLine": "4681" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4713", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Stretch", - "mainBuggyLine": "4713" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4750", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum FlexDirection", - "mainBuggyLine": "4750" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4781", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Row", - "mainBuggyLine": "4781" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4813", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Column", - "mainBuggyLine": "4813" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4845", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "RowReverse", - "mainBuggyLine": "4845" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4877", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "ColumnReverse", - "mainBuggyLine": "4877" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4890", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum PixelRoundCalcPolicy", - "mainBuggyLine": "4890" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4900", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "NO_FORCE_ROUND = 0", - "mainBuggyLine": "4900" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4910", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "FORCE_CEIL = 1", - "mainBuggyLine": "4910" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4920", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "FORCE_FLOOR = 2", - "mainBuggyLine": "4920" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4957", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum FlexWrap", - "mainBuggyLine": "4957" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "4988", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "NoWrap", - "mainBuggyLine": "4988" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5020", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Wrap", - "mainBuggyLine": "5020" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5052", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "WrapReverse", - "mainBuggyLine": "5052" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5089", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum VerticalAlign", - "mainBuggyLine": "5089" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5120", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Top", - "mainBuggyLine": "5120" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5152", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Center", - "mainBuggyLine": "5152" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5184", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Bottom", - "mainBuggyLine": "5184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5221", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum ImageRepeat", - "mainBuggyLine": "5221" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5252", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "NoRepeat", - "mainBuggyLine": "5252" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5284", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "X", - "mainBuggyLine": "5284" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5316", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Y", - "mainBuggyLine": "5316" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5348", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "XY", - "mainBuggyLine": "5348" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5385", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum ImageSize", - "mainBuggyLine": "5385" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5416", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Auto", - "mainBuggyLine": "5416" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5448", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Cover", - "mainBuggyLine": "5448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5480", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Contain", - "mainBuggyLine": "5480" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5489", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FILL = 3", - "mainBuggyLine": "5489" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5526", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum GradientDirection", - "mainBuggyLine": "5526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5557", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Left", - "mainBuggyLine": "5557" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5589", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Top", - "mainBuggyLine": "5589" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5621", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Right", - "mainBuggyLine": "5621" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5653", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Bottom", - "mainBuggyLine": "5653" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5685", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "LeftTop", - "mainBuggyLine": "5685" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5717", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "LeftBottom", - "mainBuggyLine": "5717" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5749", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "RightTop", - "mainBuggyLine": "5749" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5781", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "RightBottom", - "mainBuggyLine": "5781" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5813", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "None", - "mainBuggyLine": "5813" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5925", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum FontStyle", - "mainBuggyLine": "5925" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5956", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Normal", - "mainBuggyLine": "5956" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "5988", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Italic", - "mainBuggyLine": "5988" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6025", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum FontWeight", - "mainBuggyLine": "6025" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6056", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Lighter", - "mainBuggyLine": "6056" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6088", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Normal", - "mainBuggyLine": "6088" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6120", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Regular", - "mainBuggyLine": "6120" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6152", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Medium", - "mainBuggyLine": "6152" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6184", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Bold", - "mainBuggyLine": "6184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6216", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Bolder", - "mainBuggyLine": "6216" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6253", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum TextAlign", - "mainBuggyLine": "6253" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6284", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Center", - "mainBuggyLine": "6284" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6316", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Start", - "mainBuggyLine": "6316" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6348", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "End", - "mainBuggyLine": "6348" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6367", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "JUSTIFY", - "mainBuggyLine": "6367" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6404", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum TextOverflow", - "mainBuggyLine": "6404" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6435", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "None", - "mainBuggyLine": "6435" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6467", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Clip", - "mainBuggyLine": "6467" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6499", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Ellipsis", - "mainBuggyLine": "6499" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6516", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MARQUEE", - "mainBuggyLine": "6516" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6553", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum TextDecorationType", - "mainBuggyLine": "6553" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6584", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "None", - "mainBuggyLine": "6584" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6616", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Underline", - "mainBuggyLine": "6616" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6648", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Overline", - "mainBuggyLine": "6648" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6680", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "LineThrough", - "mainBuggyLine": "6680" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6717", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum TextCase", - "mainBuggyLine": "6717" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6748", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Normal", - "mainBuggyLine": "6748" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6780", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "LowerCase", - "mainBuggyLine": "6780" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "6812", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "UpperCase", - "mainBuggyLine": "6812" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "7488", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum CopyOptions", - "mainBuggyLine": "7488" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "7513", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "None = 0", - "mainBuggyLine": "7513" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "7539", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "InApp = 1", - "mainBuggyLine": "7539" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "7565", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "LocalDevice = 2", - "mainBuggyLine": "7565" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "7576", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CROSS_DEVICE = 3", - "mainBuggyLine": "7576" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "8097", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TAB", - "mainBuggyLine": "8097" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "8106", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DPAD_UP", - "mainBuggyLine": "8106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "8115", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DPAD_DOWN", - "mainBuggyLine": "8115" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "8124", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DPAD_LEFT", - "mainBuggyLine": "8124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "8133", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DPAD_RIGHT", - "mainBuggyLine": "8133" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts", - "codeContextStaerLine": "9162", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type Nullable = T | undefined;", - "mainBuggyLine": "9162" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/flex.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface FlexOptions", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/flex.d.ts", - "codeContextStaerLine": "90", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "direction?: FlexDirection;", - "mainBuggyLine": "90" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/flex.d.ts", - "codeContextStaerLine": "126", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "wrap?: FlexWrap;", - "mainBuggyLine": "126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/flex.d.ts", - "codeContextStaerLine": "162", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "justifyContent?: FlexAlign;", - "mainBuggyLine": "162" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/flex.d.ts", - "codeContextStaerLine": "198", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "alignItems?: ItemAlign;", - "mainBuggyLine": "198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/flex.d.ts", - "codeContextStaerLine": "234", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "alignContent?: FlexAlign;", - "mainBuggyLine": "234" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/flex.d.ts", - "codeContextStaerLine": "245", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "space?: FlexSpaceOptions;", - "mainBuggyLine": "245" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/flex.d.ts", - "codeContextStaerLine": "314", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface FlexInterface", - "mainBuggyLine": "314" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/flex.d.ts", - "codeContextStaerLine": "353", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(value?: FlexOptions): FlexAttribute;", - "mainBuggyLine": "353" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/flex.d.ts", - "codeContextStaerLine": "390", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class FlexAttribute", - "mainBuggyLine": "390" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/flex.d.ts", - "codeContextStaerLine": "400", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pointLight(value: PointLightStyle): FlexAttribute;", - "mainBuggyLine": "400" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/flex.d.ts", - "codeContextStaerLine": "433", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Flex: FlexInterface;", - "mainBuggyLine": "433" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/flex.d.ts", - "codeContextStaerLine": "465", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const FlexInstance: FlexAttribute;", - "mainBuggyLine": "465" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/folder_stack.d.ts", - "codeContextStaerLine": "27", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type WindowMode = import('../api/@ohos.window').WindowMode;", - "mainBuggyLine": "27" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/folder_stack.d.ts", - "codeContextStaerLine": "146", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onHoverStatusChange(handler: (param: HoverEventParam) => void): FolderStackAttribute;", - "mainBuggyLine": "146" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/for_each.d.ts", - "codeContextStaerLine": "68", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface ForEachInterface", - "mainBuggyLine": "68" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/for_each.d.ts", - "codeContextStaerLine": "165", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const ForEach: ForEachInterface;", - "mainBuggyLine": "165" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gauge.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface GaugeInterface", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gauge.d.ts", - "codeContextStaerLine": "102", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(options: { value: number; min?: number; max?: number }): GaugeAttribute;", - "mainBuggyLine": "102" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gauge.d.ts", - "codeContextStaerLine": "122", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface GaugeShadowOptions", - "mainBuggyLine": "122" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gauge.d.ts", - "codeContextStaerLine": "194", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface GaugeConfiguration", - "mainBuggyLine": "194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gauge.d.ts", - "codeContextStaerLine": "252", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class GaugeAttribute", - "mainBuggyLine": "252" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gauge.d.ts", - "codeContextStaerLine": "291", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "value(value: number): GaugeAttribute;", - "mainBuggyLine": "291" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gauge.d.ts", - "codeContextStaerLine": "331", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "startAngle(angle: number): GaugeAttribute;", - "mainBuggyLine": "331" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gauge.d.ts", - "codeContextStaerLine": "371", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "endAngle(angle: number): GaugeAttribute;", - "mainBuggyLine": "371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gauge.d.ts", - "codeContextStaerLine": "411", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "colors(colors: ResourceColor | LinearGradient | Array<[ResourceColor | LinearGradient, number]>): GaugeAttribute;", - "mainBuggyLine": "411" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gauge.d.ts", - "codeContextStaerLine": "451", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "strokeWidth(length: Length): GaugeAttribute;", - "mainBuggyLine": "451" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gauge.d.ts", - "codeContextStaerLine": "472", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "description(value: CustomBuilder): GaugeAttribute;", - "mainBuggyLine": "472" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gauge.d.ts", - "codeContextStaerLine": "493", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "trackShadow(value: GaugeShadowOptions): GaugeAttribute;", - "mainBuggyLine": "493" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gauge.d.ts", - "codeContextStaerLine": "514", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "indicator(value: GaugeIndicatorOptions): GaugeAttribute;", - "mainBuggyLine": "514" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gauge.d.ts", - "codeContextStaerLine": "526", - "defectLevel": 2, - "defectType": "API_DEFINE_NAME_01", - "description": "API check error of [naming errors]: Prohibited word in [privacysensitive(isprivacysensitivemode: optional): gaugeattribute;]:{option}.The word allowed is [options].", - "language": "ts", - "mainBuggyCode": "privacySensitive(isPrivacySensitiveMode: Optional): GaugeAttribute;", - "mainBuggyLine": "526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gauge.d.ts", - "codeContextStaerLine": "526", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "privacySensitive(isPrivacySensitiveMode: Optional): GaugeAttribute;", - "mainBuggyLine": "526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gauge.d.ts", - "codeContextStaerLine": "537", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contentModifier(modifier: ContentModifier): GaugeAttribute;", - "mainBuggyLine": "537" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gauge.d.ts", - "codeContextStaerLine": "570", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Gauge: GaugeInterface;", - "mainBuggyLine": "570" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gauge.d.ts", - "codeContextStaerLine": "602", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const GaugeInstance: GaugeAttribute;", - "mainBuggyLine": "602" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gesture.d.ts", - "codeContextStaerLine": "1009", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type GestureType =\n TapGestureInterface\n | LongPressGestureInterface\n | PanGestureInterface\n | PinchGestureInterface\n | SwipeGestureInterface\n | RotationGestureInterface\n | GestureGroupInterface;", - "mainBuggyLine": "1009" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gesture.d.ts", - "codeContextStaerLine": "1035", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface BaseGestureEvent", - "mainBuggyLine": "1035" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gesture.d.ts", - "codeContextStaerLine": "1073", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface TapGestureEvent", - "mainBuggyLine": "1073" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gesture.d.ts", - "codeContextStaerLine": "1093", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface LongPressGestureEvent", - "mainBuggyLine": "1093" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gesture.d.ts", - "codeContextStaerLine": "1131", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface PanGestureEvent", - "mainBuggyLine": "1131" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gesture.d.ts", - "codeContextStaerLine": "1243", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface PinchGestureEvent", - "mainBuggyLine": "1243" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gesture.d.ts", - "codeContextStaerLine": "1323", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface RotationGestureEvent", - "mainBuggyLine": "1323" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gesture.d.ts", - "codeContextStaerLine": "1363", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface SwipeGestureEvent", - "mainBuggyLine": "1363" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gesture.d.ts", - "codeContextStaerLine": "1431", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface GestureEvent", - "mainBuggyLine": "1431" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gesture.d.ts", - "codeContextStaerLine": "1794", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "allowedTypes(value: Array): T;", - "mainBuggyLine": "1794" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gesture.d.ts", - "codeContextStaerLine": "1821", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface TapGestureInterface", - "mainBuggyLine": "1821" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gesture.d.ts", - "codeContextStaerLine": "1911", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface LongPressGestureInterface", - "mainBuggyLine": "1911" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gesture.d.ts", - "codeContextStaerLine": "2172", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getDirection(): PanDirection;", - "mainBuggyLine": "2172" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gesture.d.ts", - "codeContextStaerLine": "2199", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface PanGestureInterface", - "mainBuggyLine": "2199" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gesture.d.ts", - "codeContextStaerLine": "2370", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface SwipeGestureInterface", - "mainBuggyLine": "2370" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gesture.d.ts", - "codeContextStaerLine": "2454", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface PinchGestureInterface", - "mainBuggyLine": "2454" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gesture.d.ts", - "codeContextStaerLine": "2625", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface RotationGestureInterface", - "mainBuggyLine": "2625" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gesture.d.ts", - "codeContextStaerLine": "3027", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [implements] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare class GestureHandler", - "mainBuggyLine": "3027" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gridItem.d.ts", - "codeContextStaerLine": "309", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "forceRebuild(value: boolean): GridItemAttribute;", - "mainBuggyLine": "309" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_col.d.ts", - "codeContextStaerLine": "48", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface GridColColumnOption", - "mainBuggyLine": "48" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_col.d.ts", - "codeContextStaerLine": "76", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "xs?: number,", - "mainBuggyLine": "76" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_col.d.ts", - "codeContextStaerLine": "105", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "sm?: number,", - "mainBuggyLine": "105" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_col.d.ts", - "codeContextStaerLine": "134", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "md?: number,", - "mainBuggyLine": "134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_col.d.ts", - "codeContextStaerLine": "163", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "lg?: number,", - "mainBuggyLine": "163" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_col.d.ts", - "codeContextStaerLine": "192", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "xl?: number,", - "mainBuggyLine": "192" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_col.d.ts", - "codeContextStaerLine": "221", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "xxl?: number,", - "mainBuggyLine": "221" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_col.d.ts", - "codeContextStaerLine": "251", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface GridColOptions", - "mainBuggyLine": "251" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_col.d.ts", - "codeContextStaerLine": "279", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "span?: number | GridColColumnOption;", - "mainBuggyLine": "279" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_col.d.ts", - "codeContextStaerLine": "308", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "offset?: number | GridColColumnOption;", - "mainBuggyLine": "308" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_col.d.ts", - "codeContextStaerLine": "337", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "order?: number | GridColColumnOption;", - "mainBuggyLine": "337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_col.d.ts", - "codeContextStaerLine": "367", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface GridColInterface", - "mainBuggyLine": "367" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_col.d.ts", - "codeContextStaerLine": "398", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(option?: GridColOptions): GridColAttribute;", - "mainBuggyLine": "398" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_col.d.ts", - "codeContextStaerLine": "428", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class GridColAttribute", - "mainBuggyLine": "428" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_col.d.ts", - "codeContextStaerLine": "459", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "span(value: number | GridColColumnOption): GridColAttribute;", - "mainBuggyLine": "459" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_col.d.ts", - "codeContextStaerLine": "491", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "gridColOffset(value: number | GridColColumnOption): GridColAttribute;", - "mainBuggyLine": "491" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_col.d.ts", - "codeContextStaerLine": "523", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "order(value: number | GridColColumnOption): GridColAttribute;", - "mainBuggyLine": "523" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_col.d.ts", - "codeContextStaerLine": "550", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const GridCol: GridColInterface", - "mainBuggyLine": "550" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_col.d.ts", - "codeContextStaerLine": "576", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const GridColInstance: GridColAttribute;", - "mainBuggyLine": "576" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_container.d.ts", - "codeContextStaerLine": "30", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_01", - "description": "API check error of [wrong value]: The [useinstead] tag value is incorrect. Please check the usage method.", - "language": "ts", - "mainBuggyCode": " declare enum SizeType", - "mainBuggyLine": "30" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_container.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_01", - "description": "API check error of [wrong value]: The [useinstead] tag value is incorrect. Please check the usage method.", - "language": "ts", - "mainBuggyCode": " declare interface GridContainerOptions", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_container.d.ts", - "codeContextStaerLine": "137", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_01", - "description": "API check error of [wrong value]: The [useinstead] tag value is incorrect. Please check the usage method.", - "language": "ts", - "mainBuggyCode": " interface GridContainerInterface", - "mainBuggyLine": "137" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_container.d.ts", - "codeContextStaerLine": "159", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_01", - "description": "API check error of [wrong value]: The [useinstead] tag value is incorrect. Please check the usage method.", - "language": "ts", - "mainBuggyCode": " declare class GridContainerAttribute", - "mainBuggyLine": "159" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_container.d.ts", - "codeContextStaerLine": "169", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_01", - "description": "API check error of [wrong value]: The [useinstead] tag value is incorrect. Please check the usage method.", - "language": "ts", - "mainBuggyCode": "declare const GridContainer: GridContainerInterface", - "mainBuggyLine": "169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_container.d.ts", - "codeContextStaerLine": "179", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_01", - "description": "API check error of [wrong value]: The [useinstead] tag value is incorrect. Please check the usage method.", - "language": "ts", - "mainBuggyCode": "declare const GridContainerInstance: GridContainerAttribute;", - "mainBuggyLine": "179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "48", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface GridRowSizeOption", - "mainBuggyLine": "48" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "76", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "xs?: Length,", - "mainBuggyLine": "76" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "105", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "sm?: Length,", - "mainBuggyLine": "105" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "134", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "md?: Length,", - "mainBuggyLine": "134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "163", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "lg?: Length,", - "mainBuggyLine": "163" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "192", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "xl?: Length,", - "mainBuggyLine": "192" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "218", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "xxl?: Length,", - "mainBuggyLine": "218" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "218", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "xxl?: Length,", - "mainBuggyLine": "218" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "248", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface GridRowColumnOption", - "mainBuggyLine": "248" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "276", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "xs?: number,", - "mainBuggyLine": "276" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "305", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "sm?: number,", - "mainBuggyLine": "305" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "334", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "md?: number,", - "mainBuggyLine": "334" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "363", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "lg?: number,", - "mainBuggyLine": "363" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "392", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "xl?: number,", - "mainBuggyLine": "392" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "418", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "xxl?: number,", - "mainBuggyLine": "418" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "418", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "xxl?: number,", - "mainBuggyLine": "418" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "448", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface GutterOption", - "mainBuggyLine": "448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "476", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "x?: Length | GridRowSizeOption,", - "mainBuggyLine": "476" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "505", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "y?: Length | GridRowSizeOption", - "mainBuggyLine": "505" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "535", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum BreakpointsReference", - "mainBuggyLine": "535" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "560", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "WindowSize", - "mainBuggyLine": "560" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "586", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "ComponentSize", - "mainBuggyLine": "586" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "616", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum GridRowDirection", - "mainBuggyLine": "616" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "641", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Row", - "mainBuggyLine": "641" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "667", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "RowReverse", - "mainBuggyLine": "667" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "697", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface BreakPoints", - "mainBuggyLine": "697" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "725", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "value?: Array,", - "mainBuggyLine": "725" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "754", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "reference?: BreakpointsReference,", - "mainBuggyLine": "754" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "784", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface GridRowOptions", - "mainBuggyLine": "784" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "812", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "gutter?: Length | GutterOption;", - "mainBuggyLine": "812" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "841", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "columns?: number | GridRowColumnOption;", - "mainBuggyLine": "841" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "870", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "breakpoints?: BreakPoints;", - "mainBuggyLine": "870" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "899", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "direction?: GridRowDirection;", - "mainBuggyLine": "899" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "929", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface GridRowInterface", - "mainBuggyLine": "929" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "960", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(option?: GridRowOptions): GridRowAttribute;", - "mainBuggyLine": "960" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "990", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class GridRowAttribute", - "mainBuggyLine": "990" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "1021", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onBreakpointChange(callback: (breakpoints: string) => void): GridRowAttribute;", - "mainBuggyLine": "1021" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "1044", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "alignItems(value: ItemAlign): GridRowAttribute;", - "mainBuggyLine": "1044" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "1071", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const GridRow: GridRowInterface;", - "mainBuggyLine": "1071" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts", - "codeContextStaerLine": "1097", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const GridRowInstance: GridRowAttribute;", - "mainBuggyLine": "1097" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "34", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type DrawableDescriptor = import ('../api/@ohos.arkui.drawableDescriptor').DrawableDescriptor;", - "mainBuggyLine": "34" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "44", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type DrawingColorFilter = import('../api/@ohos.graphics.drawing').default.ColorFilter;", - "mainBuggyLine": "44" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "83", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum ImageRenderMode", - "mainBuggyLine": "83" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "114", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Original", - "mainBuggyLine": "114" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "146", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Template", - "mainBuggyLine": "146" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "206", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum ImageInterpolation", - "mainBuggyLine": "206" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "237", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "None", - "mainBuggyLine": "237" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "269", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Low", - "mainBuggyLine": "269" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "301", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Medium", - "mainBuggyLine": "301" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "333", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "High", - "mainBuggyLine": "333" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "362", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface ImageInterface", - "mainBuggyLine": "362" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "401", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(src: PixelMap | ResourceStr | DrawableDescriptor): ImageAttribute;", - "mainBuggyLine": "401" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "430", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class ImageAttribute", - "mainBuggyLine": "430" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "520", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "matchTextDirection(value: boolean): ImageAttribute;", - "mainBuggyLine": "520" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "560", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fitOriginalSize(value: boolean): ImageAttribute;", - "mainBuggyLine": "560" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "600", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fillColor(value: ResourceColor): ImageAttribute;", - "mainBuggyLine": "600" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "640", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "objectFit(value: ImageFit): ImageAttribute;", - "mainBuggyLine": "640" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "680", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "objectRepeat(value: ImageRepeat): ImageAttribute;", - "mainBuggyLine": "680" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "720", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "autoResize(value: boolean): ImageAttribute;", - "mainBuggyLine": "720" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "760", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "renderMode(value: ImageRenderMode): ImageAttribute;", - "mainBuggyLine": "760" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "770", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dynamicRangeMode(value: DynamicRangeMode): ImageAttribute;", - "mainBuggyLine": "770" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "810", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "interpolation(value: ImageInterpolation): ImageAttribute;", - "mainBuggyLine": "810" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "854", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "sourceSize(value: { width: number; height: number }): ImageAttribute;", - "mainBuggyLine": "854" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "898", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "syncLoad(value: boolean): ImageAttribute;", - "mainBuggyLine": "898" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "941", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "colorFilter(value: ColorFilter | DrawingColorFilter): ImageAttribute;", - "mainBuggyLine": "941" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "973", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "copyOption(value: CopyOptions): ImageAttribute;", - "mainBuggyLine": "973" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "994", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "draggable(value: boolean): ImageAttribute;", - "mainBuggyLine": "994" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "1005", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pointLight(value: PointLightStyle): ImageAttribute;", - "mainBuggyLine": "1005" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "1018", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "edgeAntialiasing(value: number): ImageAttribute;", - "mainBuggyLine": "1018" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "1062", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onComplete(\n callback: (event?: {\n /**\n * The width of the image source.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 7\n */\n /**\n * The width of the image source.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * The width of the image source.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * The width of the image source.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n width: number;\n /**\n * The height of the image source.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 7\n */\n /**\n * The height of the image source.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * The height of the image source.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * The height of the image source.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n height: number;\n /**\n * The width of the component source.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 7\n */\n /**\n * The width of the component source.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * The width of the component source.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * The width of the component source.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n componentWidth: number;\n /**\n * The height of the component source.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 7\n */\n /**\n * The height of the component source.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * The height of the component source.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * The height of the component source.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n componentHeight: number;\n /**\n * The value of the status of the image being loaded successfully.\n * If the returned status value is 0, the image data is successfully loaded.\n * If the returned status value is 1, the image is successfully decoded.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 7\n */\n /**\n * The value of the status of the image being loaded successfully.\n * If the returned status value is 0, the image data is successfully loaded.\n * If the returned status value is 1, the image is successfully decoded.\n * \n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * The value of the status of the image being loaded successfully.\n * If the returned status value is 0, the image data is successfully loaded.\n * If the returned status value is 1, the image is successfully decoded.\n * \n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * The value of the status of the image being loaded successfully.\n * If the returned status value is 0, the image data is successfully loaded.\n * If the returned status value is 1, the image is successfully decoded.\n * \n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n loadingStatus: number;\n /**\n * The width of the picture that is actually drawn.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * The width of the picture that is actually drawn.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n contentWidth: number;\n /**\n * The height of the picture that is actually drawn.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * The height of the picture that is actually drawn.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n contentHeight: number;\n /**\n * The actual draw is offset from the x-axis of the component itself.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * The actual draw is offset from the x-axis of the component itself.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n contentOffsetX: number;\n /**\n * The actual draw is offset from the y-axis of the component itself.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * The actual draw is offset from the y-axis of the component itself.\n *\n * @type { number }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n contentOffsetY: number;\n }) => void,\n ): ImageAttribute;", - "mainBuggyLine": "1062" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "1363", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onError(callback: ImageErrorCallback): ImageAttribute;", - "mainBuggyLine": "1363" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "1407", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onFinish(event: () => void): ImageAttribute;", - "mainBuggyLine": "1407" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "1426", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableAnalyzer(enable: boolean): ImageAttribute;", - "mainBuggyLine": "1426" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "1426", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "enableAnalyzer(enable: boolean): ImageAttribute;", - "mainBuggyLine": "1426" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "1437", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "analyzerConfig(config: ImageAnalyzerConfig): ImageAttribute;", - "mainBuggyLine": "1437" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "1458", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "resizable(value: ResizableOptions): ImageAttribute;", - "mainBuggyLine": "1458" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "1469", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "privacySensitive(supported: boolean): ImageAttribute;", - "mainBuggyLine": "1469" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "1480", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enhancedImageQuality(imageQuality: ResolutionQuality): ImageAttribute;", - "mainBuggyLine": "1480" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "1513", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Image: ImageInterface;", - "mainBuggyLine": "1513" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "1545", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const ImageInstance: ImageAttribute;", - "mainBuggyLine": "1545" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "1567", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "type ImageErrorCallback = (error: ImageError) => void;", - "mainBuggyLine": "1567" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "1567", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type ImageErrorCallback = (error: ImageError) => void;", - "mainBuggyLine": "1567" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "1590", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface ImageError", - "mainBuggyLine": "1590" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "1618", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "componentWidth: number;", - "mainBuggyLine": "1618" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "1647", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "componentHeight: number;", - "mainBuggyLine": "1647" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts", - "codeContextStaerLine": "1668", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "message: string", - "mainBuggyLine": "1668" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "47", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface ImageAnimatorInterface", - "mainBuggyLine": "47" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "74", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(): ImageAnimatorAttribute;", - "mainBuggyLine": "74" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "103", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface ImageFrameInfo", - "mainBuggyLine": "103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "147", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "src: string | Resource | PixelMap;", - "mainBuggyLine": "147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "174", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "width?: number | string;", - "mainBuggyLine": "174" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "201", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "height?: number | string;", - "mainBuggyLine": "201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "228", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "top?: number | string;", - "mainBuggyLine": "228" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "255", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "left?: number | string;", - "mainBuggyLine": "255" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "280", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "duration?: number;", - "mainBuggyLine": "280" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "309", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class ImageAnimatorAttribute", - "mainBuggyLine": "309" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "339", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "images(value: Array): ImageAnimatorAttribute;", - "mainBuggyLine": "339" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "370", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "state(value: AnimationStatus): ImageAnimatorAttribute;", - "mainBuggyLine": "370" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "401", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "duration(value: number): ImageAnimatorAttribute;", - "mainBuggyLine": "401" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "432", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "reverse(value: boolean): ImageAnimatorAttribute;", - "mainBuggyLine": "432" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "463", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fixedSize(value: boolean): ImageAnimatorAttribute;", - "mainBuggyLine": "463" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "474", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "preDecode(value: number): ImageAnimatorAttribute;", - "mainBuggyLine": "474" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "505", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fillMode(value: FillMode): ImageAnimatorAttribute;", - "mainBuggyLine": "505" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "534", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "iterations(value: number): ImageAnimatorAttribute;", - "mainBuggyLine": "534" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "565", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onStart(event: () => void): ImageAnimatorAttribute;", - "mainBuggyLine": "565" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "596", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onPause(event: () => void): ImageAnimatorAttribute;", - "mainBuggyLine": "596" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "625", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onRepeat(event: () => void): ImageAnimatorAttribute;", - "mainBuggyLine": "625" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "656", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onCancel(event: () => void): ImageAnimatorAttribute;", - "mainBuggyLine": "656" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "687", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onFinish(event: () => void): ImageAnimatorAttribute;", - "mainBuggyLine": "687" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "713", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const ImageAnimator: ImageAnimatorInterface;", - "mainBuggyLine": "713" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts", - "codeContextStaerLine": "738", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const ImageAnimatorInstance: ImageAnimatorAttribute;", - "mainBuggyLine": "738" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_span.d.ts", - "codeContextStaerLine": "131", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onComplete(callback: ImageCompleteCallback): ImageSpanAttribute;", - "mainBuggyLine": "131" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_span.d.ts", - "codeContextStaerLine": "143", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onError(callback: ImageErrorCallback): ImageSpanAttribute;", - "mainBuggyLine": "143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_span.d.ts", - "codeContextStaerLine": "153", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "alt(value: PixelMap): ImageSpanAttribute;", - "mainBuggyLine": "153" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_span.d.ts", - "codeContextStaerLine": "199", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "type ImageCompleteCallback = (result: ImageLoadResult) => void;", - "mainBuggyLine": "199" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_span.d.ts", - "codeContextStaerLine": "199", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [1] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "type ImageCompleteCallback = (result: ImageLoadResult) => void;", - "mainBuggyLine": "199" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_span.d.ts", - "codeContextStaerLine": "199", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type ImageCompleteCallback = (result: ImageLoadResult) => void;", - "mainBuggyLine": "199" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/lazy_for_each.d.ts", - "codeContextStaerLine": "413", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type DataOperation =\n DataAddOperation | DataDeleteOperation | DataChangeOperation | DataMoveOperation | DataExchangeOperation | DataReloadOperation", - "mainBuggyLine": "413" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/lazy_for_each.d.ts", - "codeContextStaerLine": "473", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDataAdded(index: number): void;", - "mainBuggyLine": "473" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/lazy_for_each.d.ts", - "codeContextStaerLine": "511", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDataMoved(from: number, to: number): void;", - "mainBuggyLine": "511" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/lazy_for_each.d.ts", - "codeContextStaerLine": "551", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDataDeleted(index: number): void;", - "mainBuggyLine": "551" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/lazy_for_each.d.ts", - "codeContextStaerLine": "588", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDataChanged(index: number): void;", - "mainBuggyLine": "588" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/lazy_for_each.d.ts", - "codeContextStaerLine": "624", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDatasetChange(dataOperations: DataOperation[]): void;", - "mainBuggyLine": "624" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/line.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface LineInterface", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/line.d.ts", - "codeContextStaerLine": "102", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "new (value?: { width?: string | number; height?: string | number }): LineAttribute;", - "mainBuggyLine": "102" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/line.d.ts", - "codeContextStaerLine": "150", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(value?: { width?: string | number; height?: string | number }): LineAttribute;", - "mainBuggyLine": "150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/line.d.ts", - "codeContextStaerLine": "187", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class LineAttribute", - "mainBuggyLine": "187" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/line.d.ts", - "codeContextStaerLine": "226", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "startPoint(value: Array): LineAttribute;", - "mainBuggyLine": "226" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/line.d.ts", - "codeContextStaerLine": "266", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "endPoint(value: Array): LineAttribute;", - "mainBuggyLine": "266" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/line.d.ts", - "codeContextStaerLine": "299", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Line: LineInterface;", - "mainBuggyLine": "299" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/line.d.ts", - "codeContextStaerLine": "331", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const LineInstance: LineAttribute;", - "mainBuggyLine": "331" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum ScrollState", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Idle", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "118", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Scroll", - "mainBuggyLine": "118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "150", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Fling", - "mainBuggyLine": "150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "180", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum ListItemAlign", - "mainBuggyLine": "180" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "205", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Start", - "mainBuggyLine": "205" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "231", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Center", - "mainBuggyLine": "231" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "257", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "End", - "mainBuggyLine": "257" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "338", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum StickyStyle", - "mainBuggyLine": "338" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "363", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "None = 0", - "mainBuggyLine": "363" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "389", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Header = 1", - "mainBuggyLine": "389" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "415", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Footer = 2", - "mainBuggyLine": "415" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "707", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type OnScrollVisibleContentChangeCallback = (start: VisibleListContentInfo, end: VisibleListContentInfo) => void;", - "mainBuggyLine": "707" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "855", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface ListInterface", - "mainBuggyLine": "855" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "894", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(value?: { initialIndex?: number; space?: number | string; scroller?: Scroller }): ListAttribute;", - "mainBuggyLine": "894" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "923", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class ListAttribute", - "mainBuggyLine": "923" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "956", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "lanes(value: number | LengthConstrain, gutter?: Dimension): ListAttribute;", - "mainBuggyLine": "956" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "988", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "alignListItem(value: ListItemAlign): ListAttribute;", - "mainBuggyLine": "988" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1028", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "listDirection(value: Axis): ListAttribute;", - "mainBuggyLine": "1028" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1068", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "scrollBar(value: BarState): ListAttribute;", - "mainBuggyLine": "1068" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1109", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "edgeEffect(value: EdgeEffect, options?: EdgeEffectOptions): ListAttribute;", - "mainBuggyLine": "1109" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1120", - "defectLevel": 2, - "defectType": "API_DEFINE_NAME_01", - "description": "API check error of [naming errors]: Prohibited word in [fadingedge(value: optional): listattribute;]:{option}.The word allowed is [options].", - "language": "ts", - "mainBuggyCode": "fadingEdge(value: Optional): ListAttribute;", - "mainBuggyLine": "1120" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1120", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fadingEdge(value: Optional): ListAttribute;", - "mainBuggyLine": "1120" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1139", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contentStartOffset(value: number): ListAttribute;", - "mainBuggyLine": "1139" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1158", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contentEndOffset(value: number): ListAttribute;", - "mainBuggyLine": "1158" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1198", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "divider(\n value: {\n strokeWidth: Length;\n color?: ResourceColor;\n startMargin?: Length;\n endMargin?: Length;\n } | null,\n ): ListAttribute;", - "mainBuggyLine": "1198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1216", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "editMode(value: boolean): ListAttribute;", - "mainBuggyLine": "1216" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1256", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "multiSelectable(value: boolean): ListAttribute;", - "mainBuggyLine": "1256" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1296", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "cachedCount(value: number): ListAttribute;", - "mainBuggyLine": "1296" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1336", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "chainAnimation(value: boolean): ListAttribute;", - "mainBuggyLine": "1336" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1347", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "chainAnimationOptions(value: ChainAnimationOptions): ListAttribute;", - "mainBuggyLine": "1347" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1379", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "sticky(value: StickyStyle): ListAttribute;", - "mainBuggyLine": "1379" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1399", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "scrollSnapAlign(value: ScrollSnapAlign): ListAttribute;", - "mainBuggyLine": "1399" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1419", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "nestedScroll(value: NestedScrollOptions): ListAttribute;", - "mainBuggyLine": "1419" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1440", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableScrollInteraction(value: boolean): ListAttribute;", - "mainBuggyLine": "1440" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1461", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "friction(value: number | Resource): ListAttribute;", - "mainBuggyLine": "1461" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1473", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "childrenMainSize(value: ChildrenMainSize): ListAttribute;", - "mainBuggyLine": "1473" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1515", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [useinstead] labels.", - "language": "ts", - "mainBuggyCode": "onScroll(event: (scrollOffset: number, scrollState: ScrollState) => void): ListAttribute;", - "mainBuggyLine": "1515" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1555", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onScrollIndex(event: (start: number, end: number, center: number) => void): ListAttribute;", - "mainBuggyLine": "1555" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1566", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onScrollVisibleContentChange(handler: OnScrollVisibleContentChangeCallback): ListAttribute;", - "mainBuggyLine": "1566" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1606", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onReachStart(event: () => void): ListAttribute;", - "mainBuggyLine": "1606" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1646", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onReachEnd(event: () => void): ListAttribute;", - "mainBuggyLine": "1646" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1678", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onScrollStart(event: () => void): ListAttribute;", - "mainBuggyLine": "1678" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1718", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onScrollStop(event: () => void): ListAttribute;", - "mainBuggyLine": "1718" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1729", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onItemDelete(event: (index: number) => boolean): ListAttribute;", - "mainBuggyLine": "1729" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1758", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onItemMove(event: (from: number, to: number) => boolean): ListAttribute;", - "mainBuggyLine": "1758" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1790", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onItemDragStart(event: (event: ItemDragInfo, itemIndex: number) => ((() => any) | void)): ListAttribute;", - "mainBuggyLine": "1790" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1819", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onItemDragEnter(event: (event: ItemDragInfo) => void): ListAttribute;", - "mainBuggyLine": "1819" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1848", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onItemDragMove(event: (event: ItemDragInfo, itemIndex: number, insertIndex: number) => void): ListAttribute;", - "mainBuggyLine": "1848" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1877", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onItemDragLeave(event: (event: ItemDragInfo, itemIndex: number) => void): ListAttribute;", - "mainBuggyLine": "1877" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1909", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onItemDrop(event: (event: ItemDragInfo, itemIndex: number, insertIndex: number, isSuccess: boolean) => void): ListAttribute;", - "mainBuggyLine": "1909" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1941", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onScrollFrameBegin(event: (offset: number, state: ScrollState) => { offsetRemain: number }): ListAttribute;", - "mainBuggyLine": "1941" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "1974", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const List: ListInterface;", - "mainBuggyLine": "1974" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts", - "codeContextStaerLine": "2006", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const ListInstance: ListAttribute;", - "mainBuggyLine": "2006" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list_item.d.ts", - "codeContextStaerLine": "612", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface ListItemInterface", - "mainBuggyLine": "612" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list_item.d.ts", - "codeContextStaerLine": "634", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(value?: ListItemOptions): ListItemAttribute;", - "mainBuggyLine": "634" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list_item.d.ts", - "codeContextStaerLine": "655", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [useinstead] labels.", - "language": "ts", - "mainBuggyCode": "(value?: string): ListItemAttribute;", - "mainBuggyLine": "655" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list_item.d.ts", - "codeContextStaerLine": "655", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "(value?: string): ListItemAttribute;", - "mainBuggyLine": "655" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list_item.d.ts", - "codeContextStaerLine": "684", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class ListItemAttribute", - "mainBuggyLine": "684" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list_item.d.ts", - "codeContextStaerLine": "695", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sticky(value: Sticky): ListItemAttribute;", - "mainBuggyLine": "695" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list_item.d.ts", - "codeContextStaerLine": "706", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "editable(value: boolean | EditMode): ListItemAttribute;", - "mainBuggyLine": "706" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list_item.d.ts", - "codeContextStaerLine": "746", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "selectable(value: boolean): ListItemAttribute;", - "mainBuggyLine": "746" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list_item.d.ts", - "codeContextStaerLine": "771", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "selected(value: boolean): ListItemAttribute;", - "mainBuggyLine": "771" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list_item.d.ts", - "codeContextStaerLine": "800", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "swipeAction(value: SwipeActionOptions): ListItemAttribute;", - "mainBuggyLine": "800" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list_item.d.ts", - "codeContextStaerLine": "840", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onSelect(event: (isSelected: boolean) => void): ListItemAttribute;", - "mainBuggyLine": "840" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list_item.d.ts", - "codeContextStaerLine": "873", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const ListItemInstance: ListItemAttribute;", - "mainBuggyLine": "873" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list_item.d.ts", - "codeContextStaerLine": "905", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const ListItem: ListItemInterface;", - "mainBuggyLine": "905" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list_item_group.d.ts", - "codeContextStaerLine": "333", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "childrenMainSize(value: ChildrenMainSize): ListItemGroupAttribute;", - "mainBuggyLine": "333" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/loading_progress.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum LoadingProgressStyle", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/loading_progress.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Default", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/loading_progress.d.ts", - "codeContextStaerLine": "118", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Circular", - "mainBuggyLine": "118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/loading_progress.d.ts", - "codeContextStaerLine": "150", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Orbital", - "mainBuggyLine": "150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/loading_progress.d.ts", - "codeContextStaerLine": "187", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface LoadingProgressInterface", - "mainBuggyLine": "187" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/loading_progress.d.ts", - "codeContextStaerLine": "222", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(): LoadingProgressAttribute;", - "mainBuggyLine": "222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/loading_progress.d.ts", - "codeContextStaerLine": "259", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class LoadingProgressAttribute", - "mainBuggyLine": "259" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/loading_progress.d.ts", - "codeContextStaerLine": "298", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "color(value: ResourceColor): LoadingProgressAttribute;", - "mainBuggyLine": "298" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/loading_progress.d.ts", - "codeContextStaerLine": "319", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableLoading(value: boolean): LoadingProgressAttribute;", - "mainBuggyLine": "319" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/loading_progress.d.ts", - "codeContextStaerLine": "330", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contentModifier(modifier: ContentModifier): LoadingProgressAttribute;", - "mainBuggyLine": "330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/loading_progress.d.ts", - "codeContextStaerLine": "341", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface LoadingProgressConfiguration", - "mainBuggyLine": "341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/loading_progress.d.ts", - "codeContextStaerLine": "383", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const LoadingProgress: LoadingProgressInterface;", - "mainBuggyLine": "383" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/loading_progress.d.ts", - "codeContextStaerLine": "415", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const LoadingProgressInstance: LoadingProgressAttribute;", - "mainBuggyLine": "415" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/marquee.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface MarqueeInterface", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/marquee.d.ts", - "codeContextStaerLine": "94", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(value: { start: boolean; step?: number; loop?: number; fromStart?: boolean; src: string }): MarqueeAttribute;", - "mainBuggyLine": "94" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/marquee.d.ts", - "codeContextStaerLine": "131", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class MarqueeAttribute", - "mainBuggyLine": "131" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/marquee.d.ts", - "codeContextStaerLine": "170", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontColor(value: ResourceColor): MarqueeAttribute;", - "mainBuggyLine": "170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/marquee.d.ts", - "codeContextStaerLine": "210", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontSize(value: Length): MarqueeAttribute;", - "mainBuggyLine": "210" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/marquee.d.ts", - "codeContextStaerLine": "250", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "allowScale(value: boolean): MarqueeAttribute;", - "mainBuggyLine": "250" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/marquee.d.ts", - "codeContextStaerLine": "290", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontWeight(value: number | FontWeight | string): MarqueeAttribute;", - "mainBuggyLine": "290" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/marquee.d.ts", - "codeContextStaerLine": "330", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontFamily(value: string | Resource): MarqueeAttribute;", - "mainBuggyLine": "330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/marquee.d.ts", - "codeContextStaerLine": "341", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "marqueeUpdateStrategy(value: MarqueeUpdateStrategy): MarqueeAttribute;", - "mainBuggyLine": "341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/marquee.d.ts", - "codeContextStaerLine": "381", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onStart(event: () => void): MarqueeAttribute;", - "mainBuggyLine": "381" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/marquee.d.ts", - "codeContextStaerLine": "421", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onBounce(event: () => void): MarqueeAttribute;", - "mainBuggyLine": "421" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/marquee.d.ts", - "codeContextStaerLine": "461", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onFinish(event: () => void): MarqueeAttribute;", - "mainBuggyLine": "461" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/marquee.d.ts", - "codeContextStaerLine": "494", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Marquee: MarqueeInterface;", - "mainBuggyLine": "494" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/marquee.d.ts", - "codeContextStaerLine": "526", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const MarqueeInstance: MarqueeAttribute;", - "mainBuggyLine": "526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/matrix2d.d.ts", - "codeContextStaerLine": "51", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class Matrix2D", - "mainBuggyLine": "51" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/matrix2d.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "scaleX?: number;", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/matrix2d.d.ts", - "codeContextStaerLine": "122", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "rotateY?: number;", - "mainBuggyLine": "122" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/matrix2d.d.ts", - "codeContextStaerLine": "158", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "rotateX?: number;", - "mainBuggyLine": "158" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/matrix2d.d.ts", - "codeContextStaerLine": "194", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "scaleY?: number;", - "mainBuggyLine": "194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/matrix2d.d.ts", - "codeContextStaerLine": "230", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "translateX?: number;", - "mainBuggyLine": "230" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/matrix2d.d.ts", - "codeContextStaerLine": "266", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "translateY?: number;", - "mainBuggyLine": "266" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/matrix2d.d.ts", - "codeContextStaerLine": "306", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "identity(): Matrix2D;", - "mainBuggyLine": "306" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/matrix2d.d.ts", - "codeContextStaerLine": "346", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "invert(): Matrix2D;", - "mainBuggyLine": "346" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/matrix2d.d.ts", - "codeContextStaerLine": "368", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [deprecated] labels.", - "language": "ts", - "mainBuggyCode": "multiply(other?: Matrix2D): Matrix2D;", - "mainBuggyLine": "368" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/matrix2d.d.ts", - "codeContextStaerLine": "368", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "multiply(other?: Matrix2D): Matrix2D;", - "mainBuggyLine": "368" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/matrix2d.d.ts", - "codeContextStaerLine": "391", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [useinstead] labels.", - "language": "ts", - "mainBuggyCode": "rotate(rx?: number, ry?: number): Matrix2D;", - "mainBuggyLine": "391" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/matrix2d.d.ts", - "codeContextStaerLine": "391", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "rotate(rx?: number, ry?: number): Matrix2D;", - "mainBuggyLine": "391" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/matrix2d.d.ts", - "codeContextStaerLine": "418", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "rotate(degree: number, rx?: number, ry?: number): Matrix2D;", - "mainBuggyLine": "418" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/matrix2d.d.ts", - "codeContextStaerLine": "462", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "translate(tx?: number, ty?: number): Matrix2D;", - "mainBuggyLine": "462" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/matrix2d.d.ts", - "codeContextStaerLine": "506", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "scale(sx?: number, sy?: number): Matrix2D;", - "mainBuggyLine": "506" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/matrix2d.d.ts", - "codeContextStaerLine": "525", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "525" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/matrix2d.d.ts", - "codeContextStaerLine": "536", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(unit: LengthMetricsUnit);", - "mainBuggyLine": "536" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/menu.d.ts", - "codeContextStaerLine": "145", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fontSize(value: Length): MenuAttribute;", - "mainBuggyLine": "145" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/menu.d.ts", - "codeContextStaerLine": "223", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "menuItemDivider(options: DividerStyleOptions | undefined): MenuAttribute;", - "mainBuggyLine": "223" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/menu.d.ts", - "codeContextStaerLine": "234", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "menuItemGroupDivider(options: DividerStyleOptions | undefined): MenuAttribute;", - "mainBuggyLine": "234" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/menu.d.ts", - "codeContextStaerLine": "245", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "subMenuExpandingMode(mode: SubMenuExpandingMode): MenuAttribute;", - "mainBuggyLine": "245" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/menu_item.d.ts", - "codeContextStaerLine": "80", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "symbolStartIcon?: SymbolGlyphModifier;", - "mainBuggyLine": "80" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/menu_item.d.ts", - "codeContextStaerLine": "142", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "symbolEndIcon?: SymbolGlyphModifier;", - "mainBuggyLine": "142" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/menu_item.d.ts", - "codeContextStaerLine": "354", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "selectIcon(value: boolean | ResourceStr | SymbolGlyphModifier): MenuItemAttribute;", - "mainBuggyLine": "354" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/navigation.d.ts", - "codeContextStaerLine": "853", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pushPath(info: NavPathInfo, options?: NavigationOptions): void;", - "mainBuggyLine": "853" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/navigation.d.ts", - "codeContextStaerLine": "909", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pushDestination(info: NavPathInfo, options?: NavigationOptions): Promise;", - "mainBuggyLine": "909" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/navigation.d.ts", - "codeContextStaerLine": "1068", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "replacePath(info: NavPathInfo, options?: NavigationOptions): void;", - "mainBuggyLine": "1068" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/navigation.d.ts", - "codeContextStaerLine": "1485", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type InterceptionShowCallback = (from: NavDestinationContext|NavBar, to: NavDestinationContext|NavBar, operation: NavigationOperation, isAnimated: boolean) => void;", - "mainBuggyLine": "1485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/navigation.d.ts", - "codeContextStaerLine": "1485", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type InterceptionShowCallback = (from: NavDestinationContext|NavBar, to: NavDestinationContext|NavBar, operation: NavigationOperation, isAnimated: boolean) => void;", - "mainBuggyLine": "1485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/navigation.d.ts", - "codeContextStaerLine": "1485", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type InterceptionShowCallback = (from: NavDestinationContext|NavBar, to: NavDestinationContext|NavBar, operation: NavigationOperation, isAnimated: boolean) => void;", - "mainBuggyLine": "1485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/navigation.d.ts", - "codeContextStaerLine": "1485", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type InterceptionShowCallback = (from: NavDestinationContext|NavBar, to: NavDestinationContext|NavBar, operation: NavigationOperation, isAnimated: boolean) => void;", - "mainBuggyLine": "1485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/navigation.d.ts", - "codeContextStaerLine": "1485", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [4] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "declare type InterceptionShowCallback = (from: NavDestinationContext|NavBar, to: NavDestinationContext|NavBar, operation: NavigationOperation, isAnimated: boolean) => void;", - "mainBuggyLine": "1485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/navigation.d.ts", - "codeContextStaerLine": "1485", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type InterceptionShowCallback = (from: NavDestinationContext|NavBar, to: NavDestinationContext|NavBar, operation: NavigationOperation, isAnimated: boolean) => void;", - "mainBuggyLine": "1485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/navigation.d.ts", - "codeContextStaerLine": "1497", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type InterceptionModeCallback = (mode: NavigationMode) => void;", - "mainBuggyLine": "1497" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/navigation.d.ts", - "codeContextStaerLine": "1497", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [1] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "declare type InterceptionModeCallback = (mode: NavigationMode) => void;", - "mainBuggyLine": "1497" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/navigation.d.ts", - "codeContextStaerLine": "1497", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type InterceptionModeCallback = (mode: NavigationMode) => void;", - "mainBuggyLine": "1497" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/navigation.d.ts", - "codeContextStaerLine": "2267", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "subTitle(value: string): NavigationAttribute;", - "mainBuggyLine": "2267" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/navigation.d.ts", - "codeContextStaerLine": "2395", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "toolBar(value: object | CustomBuilder): NavigationAttribute;", - "mainBuggyLine": "2395" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/navigation.d.ts", - "codeContextStaerLine": "2419", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "toolbarConfiguration(value: Array | CustomBuilder, options?: NavigationToolbarOptions): NavigationAttribute;", - "mainBuggyLine": "2419" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/navigation.d.ts", - "codeContextStaerLine": "2641", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isInteractive?: boolean;", - "mainBuggyLine": "2641" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/navigation.d.ts", - "codeContextStaerLine": "2728", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isInteractive?: boolean;", - "mainBuggyLine": "2728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/navigation.d.ts", - "codeContextStaerLine": "2754", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "cancelTransition?(): void;", - "mainBuggyLine": "2754" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/navigation.d.ts", - "codeContextStaerLine": "2840", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "param?: Object;", - "mainBuggyLine": "2840" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/nav_destination.d.ts", - "codeContextStaerLine": "362", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "navDestinationId?: string;", - "mainBuggyLine": "362" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/nav_destination.d.ts", - "codeContextStaerLine": "374", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getConfigInRouteMap(): RouteMapConfig | undefined;", - "mainBuggyLine": "374" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/nav_destination.d.ts", - "codeContextStaerLine": "585", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "menus(value: Array | CustomBuilder): NavDestinationAttribute;", - "mainBuggyLine": "585" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/nav_destination.d.ts", - "codeContextStaerLine": "609", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillAppear(callback: Callback): NavDestinationAttribute;", - "mainBuggyLine": "609" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/nav_destination.d.ts", - "codeContextStaerLine": "620", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillDisappear(callback: Callback): NavDestinationAttribute;", - "mainBuggyLine": "620" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/nav_destination.d.ts", - "codeContextStaerLine": "631", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillShow(callback: Callback): NavDestinationAttribute;", - "mainBuggyLine": "631" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/nav_destination.d.ts", - "codeContextStaerLine": "642", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillHide(callback: Callback): NavDestinationAttribute;", - "mainBuggyLine": "642" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/nav_destination.d.ts", - "codeContextStaerLine": "654", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ignoreLayoutSafeArea(types?: Array, edges?: Array): NavDestinationAttribute;", - "mainBuggyLine": "654" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/page_transition.d.ts", - "codeContextStaerLine": "240", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "START = 5", - "mainBuggyLine": "240" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/page_transition.d.ts", - "codeContextStaerLine": "249", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "END = 6", - "mainBuggyLine": "249" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/page_transition.d.ts", - "codeContextStaerLine": "559", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface PageTransitionEnterInterface", - "mainBuggyLine": "559" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/page_transition.d.ts", - "codeContextStaerLine": "645", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface PageTransitionExitInterface", - "mainBuggyLine": "645" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/particle.d.ts", - "codeContextStaerLine": "616", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "[ParticleUpdater.NONE]: void;", - "mainBuggyLine": "616" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/particle.d.ts", - "codeContextStaerLine": "738", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "[ParticleUpdater.NONE]: void;", - "mainBuggyLine": "738" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/particle.d.ts", - "codeContextStaerLine": "823", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "distributionType?: DistributionType;", - "mainBuggyLine": "823" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/particle.d.ts", - "codeContextStaerLine": "1257", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "emitter(value : Array) : ParticleAttribute;", - "mainBuggyLine": "1257" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/particle.d.ts", - "codeContextStaerLine": "1268", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "disturbanceFields(fields: Array): ParticleAttribute;", - "mainBuggyLine": "1268" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/path.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface PathInterface", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/path.d.ts", - "codeContextStaerLine": "94", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "new (value?: { width?: number | string; height?: number | string; commands?: string }): PathAttribute;", - "mainBuggyLine": "94" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/path.d.ts", - "codeContextStaerLine": "134", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(value?: { width?: number | string; height?: number | string; commands?: string }): PathAttribute;", - "mainBuggyLine": "134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/path.d.ts", - "codeContextStaerLine": "171", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class PathAttribute", - "mainBuggyLine": "171" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/path.d.ts", - "codeContextStaerLine": "210", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "commands(value: string): PathAttribute;", - "mainBuggyLine": "210" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/path.d.ts", - "codeContextStaerLine": "243", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Path: PathInterface;", - "mainBuggyLine": "243" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/path.d.ts", - "codeContextStaerLine": "275", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const PathInstance: PathAttribute;", - "mainBuggyLine": "275" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/polygon.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface PolygonInterface", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/polygon.d.ts", - "codeContextStaerLine": "125", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(value?: { width?: string | number; height?: string | number }): PolygonAttribute;", - "mainBuggyLine": "125" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/polygon.d.ts", - "codeContextStaerLine": "162", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class PolygonAttribute", - "mainBuggyLine": "162" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/polygon.d.ts", - "codeContextStaerLine": "201", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "points(value: Array): PolygonAttribute;", - "mainBuggyLine": "201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/polygon.d.ts", - "codeContextStaerLine": "234", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Polygon: PolygonInterface;", - "mainBuggyLine": "234" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/polygon.d.ts", - "codeContextStaerLine": "266", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const PolygonInstance: PolygonAttribute;", - "mainBuggyLine": "266" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/polyline.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface PolylineInterface", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/polyline.d.ts", - "codeContextStaerLine": "126", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(value?: { width?: string | number; height?: string | number }): PolylineAttribute;", - "mainBuggyLine": "126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/polyline.d.ts", - "codeContextStaerLine": "155", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class PolylineAttribute", - "mainBuggyLine": "155" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/polyline.d.ts", - "codeContextStaerLine": "194", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "points(value: Array): PolylineAttribute;", - "mainBuggyLine": "194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/polyline.d.ts", - "codeContextStaerLine": "227", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Polyline: PolylineInterface;", - "mainBuggyLine": "227" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/polyline.d.ts", - "codeContextStaerLine": "259", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const PolylineInstance: PolylineAttribute;", - "mainBuggyLine": "259" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface ProgressOptions", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "90", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "value: number;", - "mainBuggyLine": "90" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "126", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "total?: number;", - "mainBuggyLine": "126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "137", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "style?: ProgressStyle", - "mainBuggyLine": "137" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "173", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "type?: Type", - "mainBuggyLine": "173" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "210", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum ProgressType", - "mainBuggyLine": "210" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "241", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Linear = 0", - "mainBuggyLine": "241" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "273", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Ring = 1", - "mainBuggyLine": "273" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "305", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Eclipse = 2", - "mainBuggyLine": "305" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "337", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "ScaleRing = 3", - "mainBuggyLine": "337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "369", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Capsule = 4", - "mainBuggyLine": "369" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "456", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface ProgressStyleOptions", - "mainBuggyLine": "456" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "456", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface ProgressStyleOptions", - "mainBuggyLine": "456" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "491", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "strokeWidth?: Length;", - "mainBuggyLine": "491" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "527", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "scaleCount?: number;", - "mainBuggyLine": "527" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "563", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "scaleWidth?: Length;", - "mainBuggyLine": "563" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "657", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface EclipseStyleOptions", - "mainBuggyLine": "657" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "677", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface ScaleRingStyleOptions", - "mainBuggyLine": "677" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "749", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface RingStyleOptions", - "mainBuggyLine": "749" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "821", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface LinearStyleOptions", - "mainBuggyLine": "821" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "876", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface CapsuleStyleOptions", - "mainBuggyLine": "876" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1022", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum ProgressStyle", - "mainBuggyLine": "1022" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1053", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Linear", - "mainBuggyLine": "1053" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1085", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Ring", - "mainBuggyLine": "1085" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1117", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Eclipse", - "mainBuggyLine": "1117" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1149", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "ScaleRing", - "mainBuggyLine": "1149" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1181", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Capsule", - "mainBuggyLine": "1181" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1213", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "[ProgressType.Linear]: LinearStyleOptions | ProgressStyleOptions;", - "mainBuggyLine": "1213" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1228", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "[ProgressType.Ring]: RingStyleOptions | ProgressStyleOptions;", - "mainBuggyLine": "1228" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1243", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "[ProgressType.Eclipse]: EclipseStyleOptions | ProgressStyleOptions;", - "mainBuggyLine": "1243" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1258", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "[ProgressType.ScaleRing]: ScaleRingStyleOptions | ProgressStyleOptions;", - "mainBuggyLine": "1258" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1273", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "[ProgressType.Capsule]: CapsuleStyleOptions | ProgressStyleOptions;", - "mainBuggyLine": "1273" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1310", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface ProgressInterface", - "mainBuggyLine": "1310" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1349", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(options: ProgressOptions): ProgressAttribute;", - "mainBuggyLine": "1349" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1386", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class ProgressAttribute", - "mainBuggyLine": "1386" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1426", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "value(value: number): ProgressAttribute;", - "mainBuggyLine": "1426" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1466", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "color(value: ResourceColor | LinearGradient): ProgressAttribute;", - "mainBuggyLine": "1466" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1506", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "style(value: Style): ProgressAttribute;", - "mainBuggyLine": "1506" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1518", - "defectLevel": 2, - "defectType": "API_DEFINE_NAME_01", - "description": "API check error of [naming errors]: Prohibited word in [privacysensitive(isprivacysensitivemode: optional): progressattribute;]:{option}.The word allowed is [options].", - "language": "ts", - "mainBuggyCode": "privacySensitive(isPrivacySensitiveMode: Optional): ProgressAttribute;", - "mainBuggyLine": "1518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1518", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "privacySensitive(isPrivacySensitiveMode: Optional): ProgressAttribute;", - "mainBuggyLine": "1518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1529", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contentModifier(modifier: ContentModifier): ProgressAttribute;", - "mainBuggyLine": "1529" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1540", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface ProgressConfiguration", - "mainBuggyLine": "1540" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1592", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Progress: ProgressInterface;", - "mainBuggyLine": "1592" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts", - "codeContextStaerLine": "1624", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const ProgressInstance: ProgressAttribute;", - "mainBuggyLine": "1624" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/qrcode.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface QRCodeInterface", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/qrcode.d.ts", - "codeContextStaerLine": "94", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(value: string): QRCodeAttribute;", - "mainBuggyLine": "94" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/qrcode.d.ts", - "codeContextStaerLine": "131", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class QRCodeAttribute", - "mainBuggyLine": "131" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/qrcode.d.ts", - "codeContextStaerLine": "170", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "color(value: ResourceColor): QRCodeAttribute;", - "mainBuggyLine": "170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/qrcode.d.ts", - "codeContextStaerLine": "210", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "backgroundColor(value: ResourceColor): QRCodeAttribute;", - "mainBuggyLine": "210" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/qrcode.d.ts", - "codeContextStaerLine": "229", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contentOpacity(value: number | Resource): QRCodeAttribute;", - "mainBuggyLine": "229" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/qrcode.d.ts", - "codeContextStaerLine": "262", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const QRCode: QRCodeInterface;", - "mainBuggyLine": "262" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/qrcode.d.ts", - "codeContextStaerLine": "294", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const QRCodeInstance: QRCodeAttribute;", - "mainBuggyLine": "294" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts", - "codeContextStaerLine": "30", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum RadioIndicatorType", - "mainBuggyLine": "30" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts", - "codeContextStaerLine": "39", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "TICK = 0", - "mainBuggyLine": "39" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts", - "codeContextStaerLine": "48", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "DOT = 1", - "mainBuggyLine": "48" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts", - "codeContextStaerLine": "57", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "CUSTOM = 2", - "mainBuggyLine": "57" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts", - "codeContextStaerLine": "94", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface RadioOptions", - "mainBuggyLine": "94" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts", - "codeContextStaerLine": "129", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "group: string;", - "mainBuggyLine": "129" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts", - "codeContextStaerLine": "165", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "value: string;", - "mainBuggyLine": "165" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts", - "codeContextStaerLine": "175", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "indicatorType?: RadioIndicatorType;", - "mainBuggyLine": "175" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts", - "codeContextStaerLine": "175", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "indicatorType?: RadioIndicatorType;", - "mainBuggyLine": "175" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts", - "codeContextStaerLine": "185", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "indicatorBuilder?: CustomBuilder;", - "mainBuggyLine": "185" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts", - "codeContextStaerLine": "185", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "indicatorBuilder?: CustomBuilder;", - "mainBuggyLine": "185" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts", - "codeContextStaerLine": "304", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface RadioInterface", - "mainBuggyLine": "304" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts", - "codeContextStaerLine": "343", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(options: RadioOptions): RadioAttribute;", - "mainBuggyLine": "343" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts", - "codeContextStaerLine": "380", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class RadioAttribute", - "mainBuggyLine": "380" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts", - "codeContextStaerLine": "419", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "checked(value: boolean): RadioAttribute;", - "mainBuggyLine": "419" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts", - "codeContextStaerLine": "459", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onChange(callback: (isChecked: boolean) => void): RadioAttribute;", - "mainBuggyLine": "459" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts", - "codeContextStaerLine": "480", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "radioStyle(value?: RadioStyle): RadioAttribute;", - "mainBuggyLine": "480" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts", - "codeContextStaerLine": "491", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contentModifier(modifier: ContentModifier): RadioAttribute;", - "mainBuggyLine": "491" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts", - "codeContextStaerLine": "502", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface RadioConfiguration", - "mainBuggyLine": "502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts", - "codeContextStaerLine": "564", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Radio: RadioInterface;", - "mainBuggyLine": "564" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts", - "codeContextStaerLine": "596", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const RadioInstance: RadioAttribute;", - "mainBuggyLine": "596" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rating.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface RatingInterface", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rating.d.ts", - "codeContextStaerLine": "94", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(options?: { rating: number; indicator?: boolean }): RatingAttribute;", - "mainBuggyLine": "94" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rating.d.ts", - "codeContextStaerLine": "105", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface RatingConfiguration", - "mainBuggyLine": "105" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rating.d.ts", - "codeContextStaerLine": "191", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class RatingAttribute", - "mainBuggyLine": "191" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rating.d.ts", - "codeContextStaerLine": "230", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "stars(value: number): RatingAttribute;", - "mainBuggyLine": "230" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rating.d.ts", - "codeContextStaerLine": "270", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "stepSize(value: number): RatingAttribute;", - "mainBuggyLine": "270" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rating.d.ts", - "codeContextStaerLine": "310", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "starStyle(value: { backgroundUri: string; foregroundUri: string; secondaryUri?: string }): RatingAttribute;", - "mainBuggyLine": "310" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rating.d.ts", - "codeContextStaerLine": "350", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onChange(callback: (value: number) => void): RatingAttribute;", - "mainBuggyLine": "350" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rating.d.ts", - "codeContextStaerLine": "361", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contentModifier(modifier: ContentModifier): RatingAttribute;", - "mainBuggyLine": "361" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rating.d.ts", - "codeContextStaerLine": "394", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Rating: RatingInterface;", - "mainBuggyLine": "394" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rating.d.ts", - "codeContextStaerLine": "426", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const RatingInstance: RatingAttribute;", - "mainBuggyLine": "426" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rect.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface RectInterface", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rect.d.ts", - "codeContextStaerLine": "94", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "new (\n value?:\n {\n width?: number | string;\n height?: number | string;\n radius?: number | string | Array;\n }\n | {\n width?: number | string;\n height?: number | string;\n radiusWidth?: number | string;\n radiusHeight?: number | string;\n },\n ): RectAttribute;", - "mainBuggyLine": "94" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rect.d.ts", - "codeContextStaerLine": "94", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "new (\n value?:\n {\n width?: number | string;\n height?: number | string;\n radius?: number | string | Array;\n }\n | {\n width?: number | string;\n height?: number | string;\n radiusWidth?: number | string;\n radiusHeight?: number | string;\n },\n ): RectAttribute;", - "mainBuggyLine": "94" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rect.d.ts", - "codeContextStaerLine": "151", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(\n value?:\n {\n width?: number | string;\n height?: number | string;\n radius?: number | string | Array;\n }\n | {\n width?: number | string;\n height?: number | string;\n radiusWidth?: number | string;\n radiusHeight?: number | string;\n },\n ): RectAttribute;", - "mainBuggyLine": "151" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rect.d.ts", - "codeContextStaerLine": "201", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class RectAttribute", - "mainBuggyLine": "201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rect.d.ts", - "codeContextStaerLine": "240", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "radiusWidth(value: number | string): RectAttribute;", - "mainBuggyLine": "240" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rect.d.ts", - "codeContextStaerLine": "280", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "radiusHeight(value: number | string): RectAttribute;", - "mainBuggyLine": "280" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rect.d.ts", - "codeContextStaerLine": "320", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "radius(value: number | string | Array): RectAttribute;", - "mainBuggyLine": "320" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rect.d.ts", - "codeContextStaerLine": "347", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Rect: RectInterface;", - "mainBuggyLine": "347" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rect.d.ts", - "codeContextStaerLine": "378", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const RectInstance: RectAttribute;", - "mainBuggyLine": "378" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/refresh.d.ts", - "codeContextStaerLine": "234", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "offset?: number | string;", - "mainBuggyLine": "234" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/refresh.d.ts", - "codeContextStaerLine": "260", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "friction?: number | string;", - "mainBuggyLine": "260" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/refresh.d.ts", - "codeContextStaerLine": "270", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "promptText?: ResourceStr;", - "mainBuggyLine": "270" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/refresh.d.ts", - "codeContextStaerLine": "464", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onOffsetChange(callback: Callback): RefreshAttribute;", - "mainBuggyLine": "464" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/refresh.d.ts", - "codeContextStaerLine": "475", - "defectLevel": 2, - "defectType": "API_DEFINE_NAME_01", - "description": "API check error of [naming errors]: Prohibited word in [pulldownratio(ratio: optional): refreshattribute;]:{option}.The word allowed is [options].", - "language": "ts", - "mainBuggyCode": "pullDownRatio(ratio: Optional): RefreshAttribute;", - "mainBuggyLine": "475" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/refresh.d.ts", - "codeContextStaerLine": "475", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pullDownRatio(ratio: Optional): RefreshAttribute;", - "mainBuggyLine": "475" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/relative_container.d.ts", - "codeContextStaerLine": "48", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface RelativeContainerInterface", - "mainBuggyLine": "48" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/relative_container.d.ts", - "codeContextStaerLine": "76", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(): RelativeContainerAttribute;", - "mainBuggyLine": "76" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/relative_container.d.ts", - "codeContextStaerLine": "367", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class RelativeContainerAttribute", - "mainBuggyLine": "367" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/relative_container.d.ts", - "codeContextStaerLine": "378", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "guideLine(value: Array): RelativeContainerAttribute;", - "mainBuggyLine": "378" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/relative_container.d.ts", - "codeContextStaerLine": "390", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "barrier(value: Array): RelativeContainerAttribute;", - "mainBuggyLine": "390" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/relative_container.d.ts", - "codeContextStaerLine": "402", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "barrier(barrierStyle: Array): RelativeContainerAttribute;", - "mainBuggyLine": "402" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/relative_container.d.ts", - "codeContextStaerLine": "429", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const RelativeContainer: RelativeContainerInterface;", - "mainBuggyLine": "429" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/relative_container.d.ts", - "codeContextStaerLine": "455", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const RelativeContainerInstance: RelativeContainerAttribute;", - "mainBuggyLine": "455" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/repeat.d.ts", - "codeContextStaerLine": "25", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface RepeatItem", - "mainBuggyLine": "25" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/repeat.d.ts", - "codeContextStaerLine": "35", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "item: T,", - "mainBuggyLine": "35" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/repeat.d.ts", - "codeContextStaerLine": "45", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "index?: number", - "mainBuggyLine": "45" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/repeat.d.ts", - "codeContextStaerLine": "57", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class RepeatAttribute", - "mainBuggyLine": "57" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/repeat.d.ts", - "codeContextStaerLine": "68", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "each(itemGenerator: (repeatItem: RepeatItem) => void): RepeatAttribute;", - "mainBuggyLine": "68" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/repeat.d.ts", - "codeContextStaerLine": "79", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "key(keyGenerator: (item: T, index: number) => string): RepeatAttribute;", - "mainBuggyLine": "79" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/repeat.d.ts", - "codeContextStaerLine": "90", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Repeat: (arr: Array) => RepeatAttribute;", - "mainBuggyLine": "90" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "413", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "letterSpacing?: number | string;", - "mainBuggyLine": "413" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "423", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "lineHeight?: number | string | Resource;", - "mainBuggyLine": "423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "438", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fontFeature?: string;", - "mainBuggyLine": "438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "563", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "wordBreak?: WordBreak;", - "mainBuggyLine": "563" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "573", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "lineBreakStrategy?: LineBreakStrategy;", - "mainBuggyLine": "573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "1056", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "letterSpacing?: number;", - "mainBuggyLine": "1056" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "1066", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "lineHeight?: number;", - "mainBuggyLine": "1066" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "1081", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fontFeature?: string;", - "mainBuggyLine": "1081" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "1390", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "paragraphStyle?: RichEditorParagraphStyle;", - "mainBuggyLine": "1390" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "1472", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "layoutStyle?: RichEditorLayoutStyle;", - "mainBuggyLine": "1472" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "2042", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface RichEditorSpanStyleOptions", - "mainBuggyLine": "2042" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "2061", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface RichEditorParagraphStyleOptions", - "mainBuggyLine": "2061" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "2098", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface RichEditorUpdateTextSpanStyleOptions", - "mainBuggyLine": "2098" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "2134", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface RichEditorUpdateImageSpanStyleOptions", - "mainBuggyLine": "2134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "2171", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface RichEditorUpdateSymbolSpanStyleOptions", - "mainBuggyLine": "2171" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "3214", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "copyOptions(value: CopyOptions): RichEditorAttribute;", - "mainBuggyLine": "3214" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "3349", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [2] [param] tag is incorrect. Please check if it matches the [2] parameter name.", - "language": "ts", - "mainBuggyCode": "placeholder(value: ResourceStr, style?: PlaceholderStyle): RichEditorAttribute;", - "mainBuggyLine": "3349" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "3360", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "caretColor(value: ResourceColor): RichEditorAttribute;", - "mainBuggyLine": "3360" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "3371", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "selectedBackgroundColor(value: ResourceColor): RichEditorAttribute;", - "mainBuggyLine": "3371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "3382", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onEditingChange(callback: Callback): RichEditorAttribute;", - "mainBuggyLine": "3382" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "3393", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enterKeyType(value: EnterKeyType): RichEditorAttribute;", - "mainBuggyLine": "3393" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "3404", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onSubmit(callback: SubmitCallback): RichEditorAttribute;", - "mainBuggyLine": "3404" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "3415", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillChange(callback: Callback) : RichEditorAttribute;", - "mainBuggyLine": "3415" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "3426", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDidChange(callback: OnDidChangeCallback) : RichEditorAttribute;", - "mainBuggyLine": "3426" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "3437", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onCut(callback: Callback): RichEditorAttribute;", - "mainBuggyLine": "3437" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "3448", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onCopy(callback: Callback): RichEditorAttribute;", - "mainBuggyLine": "3448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "3499", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type SubmitCallback = (enterKey: EnterKeyType, event: SubmitEvent) => void;", - "mainBuggyLine": "3499" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "3499", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type SubmitCallback = (enterKey: EnterKeyType, event: SubmitEvent) => void;", - "mainBuggyLine": "3499" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "3499", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [2] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "declare type SubmitCallback = (enterKey: EnterKeyType, event: SubmitEvent) => void;", - "mainBuggyLine": "3499" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "3499", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type SubmitCallback = (enterKey: EnterKeyType, event: SubmitEvent) => void;", - "mainBuggyLine": "3499" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "3511", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type MenuOnAppearCallback = (start: number, end: number) => void;", - "mainBuggyLine": "3511" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "3511", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type MenuOnAppearCallback = (start: number, end: number) => void;", - "mainBuggyLine": "3511" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "3511", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [2] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "declare type MenuOnAppearCallback = (start: number, end: number) => void;", - "mainBuggyLine": "3511" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "3511", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type MenuOnAppearCallback = (start: number, end: number) => void;", - "mainBuggyLine": "3511" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts", - "codeContextStaerLine": "3559", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "(options: RichEditorStyledStringOptions): RichEditorAttribute;", - "mainBuggyLine": "3559" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/row.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface RowInterface", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/row.d.ts", - "codeContextStaerLine": "94", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(value?: { space?: string | number }): RowAttribute;", - "mainBuggyLine": "94" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/row.d.ts", - "codeContextStaerLine": "131", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class RowAttribute", - "mainBuggyLine": "131" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/row.d.ts", - "codeContextStaerLine": "170", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "alignItems(value: VerticalAlign): RowAttribute;", - "mainBuggyLine": "170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/row.d.ts", - "codeContextStaerLine": "210", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "justifyContent(value: FlexAlign): RowAttribute;", - "mainBuggyLine": "210" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/row.d.ts", - "codeContextStaerLine": "220", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pointLight(value: PointLightStyle): RowAttribute;", - "mainBuggyLine": "220" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/row.d.ts", - "codeContextStaerLine": "253", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Row: RowInterface;", - "mainBuggyLine": "253" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/row.d.ts", - "codeContextStaerLine": "285", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const RowInstance: RowAttribute;", - "mainBuggyLine": "285" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/save_button.d.ts", - "codeContextStaerLine": "74", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PICTURE = 2", - "mainBuggyLine": "74" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll.d.ts", - "codeContextStaerLine": "99", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "Free", - "mainBuggyLine": "99" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll.d.ts", - "codeContextStaerLine": "575", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "scrollPage(value: { next: boolean; direction?: Axis });", - "mainBuggyLine": "575" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll.d.ts", - "codeContextStaerLine": "719", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface ScrollPageOptions", - "mainBuggyLine": "719" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll.d.ts", - "codeContextStaerLine": "719", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface ScrollPageOptions", - "mainBuggyLine": "719" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll.d.ts", - "codeContextStaerLine": "987", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillScroll(handler: ScrollOnWillScrollCallback): ScrollAttribute;", - "mainBuggyLine": "987" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll.d.ts", - "codeContextStaerLine": "999", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDidScroll(handler: ScrollOnScrollCallback): ScrollAttribute;", - "mainBuggyLine": "999" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll.d.ts", - "codeContextStaerLine": "1069", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onScrollEnd(event: () => void): ScrollAttribute;", - "mainBuggyLine": "1069" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll.d.ts", - "codeContextStaerLine": "1357", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "initialOffset(value: OffsetOptions): ScrollAttribute;", - "mainBuggyLine": "1357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll.d.ts", - "codeContextStaerLine": "1371", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type ScrollOnScrollCallback = (xOffset: number, yOffset: number, scrollState: ScrollState) => void;", - "mainBuggyLine": "1371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll.d.ts", - "codeContextStaerLine": "1371", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type ScrollOnScrollCallback = (xOffset: number, yOffset: number, scrollState: ScrollState) => void;", - "mainBuggyLine": "1371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll.d.ts", - "codeContextStaerLine": "1371", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type ScrollOnScrollCallback = (xOffset: number, yOffset: number, scrollState: ScrollState) => void;", - "mainBuggyLine": "1371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll.d.ts", - "codeContextStaerLine": "1371", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [3] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "declare type ScrollOnScrollCallback = (xOffset: number, yOffset: number, scrollState: ScrollState) => void;", - "mainBuggyLine": "1371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll.d.ts", - "codeContextStaerLine": "1371", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type ScrollOnScrollCallback = (xOffset: number, yOffset: number, scrollState: ScrollState) => void;", - "mainBuggyLine": "1371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll.d.ts", - "codeContextStaerLine": "1387", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type ScrollOnWillScrollCallback =\n (xOffset: number, yOffset: number, scrollState: ScrollState, scrollSource: ScrollSource) => void | OffsetResult;", - "mainBuggyLine": "1387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll.d.ts", - "codeContextStaerLine": "1387", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type ScrollOnWillScrollCallback =\n (xOffset: number, yOffset: number, scrollState: ScrollState, scrollSource: ScrollSource) => void | OffsetResult;", - "mainBuggyLine": "1387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll.d.ts", - "codeContextStaerLine": "1387", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type ScrollOnWillScrollCallback =\n (xOffset: number, yOffset: number, scrollState: ScrollState, scrollSource: ScrollSource) => void | OffsetResult;", - "mainBuggyLine": "1387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll.d.ts", - "codeContextStaerLine": "1387", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type ScrollOnWillScrollCallback =\n (xOffset: number, yOffset: number, scrollState: ScrollState, scrollSource: ScrollSource) => void | OffsetResult;", - "mainBuggyLine": "1387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll.d.ts", - "codeContextStaerLine": "1387", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_06", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [returns] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type ScrollOnWillScrollCallback =\n (xOffset: number, yOffset: number, scrollState: ScrollState, scrollSource: ScrollSource) => void | OffsetResult;", - "mainBuggyLine": "1387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll.d.ts", - "codeContextStaerLine": "1387", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [4] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "declare type ScrollOnWillScrollCallback =\n (xOffset: number, yOffset: number, scrollState: ScrollState, scrollSource: ScrollSource) => void | OffsetResult;", - "mainBuggyLine": "1387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll.d.ts", - "codeContextStaerLine": "1387", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type ScrollOnWillScrollCallback =\n (xOffset: number, yOffset: number, scrollState: ScrollState, scrollSource: ScrollSource) => void | OffsetResult;", - "mainBuggyLine": "1387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/search.d.ts", - "codeContextStaerLine": "122", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setTextSelection(selectionStart: number, selectionEnd: number, options?: SelectionOptions): void;", - "mainBuggyLine": "122" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/search.d.ts", - "codeContextStaerLine": "288", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NUMBER_DECIMAL = 12", - "mainBuggyLine": "288" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/search.d.ts", - "codeContextStaerLine": "683", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "textIndent(value: Dimension): SearchAttribute;", - "mainBuggyLine": "683" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/search.d.ts", - "codeContextStaerLine": "695", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "inputFilter(value: ResourceStr, error?: Callback): SearchAttribute;", - "mainBuggyLine": "695" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/search.d.ts", - "codeContextStaerLine": "706", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onEditChange(callback: Callback): SearchAttribute;", - "mainBuggyLine": "706" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/search.d.ts", - "codeContextStaerLine": "717", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "selectedBackgroundColor(value: ResourceColor): SearchAttribute;", - "mainBuggyLine": "717" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/search.d.ts", - "codeContextStaerLine": "836", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enterKeyType(value: EnterKeyType): SearchAttribute;", - "mainBuggyLine": "836" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/search.d.ts", - "codeContextStaerLine": "1158", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "minFontSize(value: number | string | Resource): SearchAttribute;", - "mainBuggyLine": "1158" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/search.d.ts", - "codeContextStaerLine": "1169", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maxFontSize(value: number | string | Resource): SearchAttribute;", - "mainBuggyLine": "1169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/search.d.ts", - "codeContextStaerLine": "1211", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "decoration(value: TextDecorationOptions): SearchAttribute;", - "mainBuggyLine": "1211" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/search.d.ts", - "codeContextStaerLine": "1222", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "letterSpacing(value: number | string | Resource): SearchAttribute;", - "mainBuggyLine": "1222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/search.d.ts", - "codeContextStaerLine": "1233", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "lineHeight(value: number | string | Resource): SearchAttribute;", - "mainBuggyLine": "1233" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/search.d.ts", - "codeContextStaerLine": "1269", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fontFeature(value: string): SearchAttribute;", - "mainBuggyLine": "1269" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/search.d.ts", - "codeContextStaerLine": "1280", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillInsert(callback: Callback): SearchAttribute;", - "mainBuggyLine": "1280" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/search.d.ts", - "codeContextStaerLine": "1291", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDidInsert(callback: Callback): SearchAttribute;", - "mainBuggyLine": "1291" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/search.d.ts", - "codeContextStaerLine": "1302", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillDelete(callback: Callback): SearchAttribute;", - "mainBuggyLine": "1302" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/search.d.ts", - "codeContextStaerLine": "1313", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDidDelete(callback: Callback): SearchAttribute;", - "mainBuggyLine": "1313" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/security_component.d.ts", - "codeContextStaerLine": "440", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "key(value: string): T;", - "mainBuggyLine": "440" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/security_component.d.ts", - "codeContextStaerLine": "450", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "width(value: Length): T;", - "mainBuggyLine": "450" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/security_component.d.ts", - "codeContextStaerLine": "460", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "height(value: Length): T;", - "mainBuggyLine": "460" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/security_component.d.ts", - "codeContextStaerLine": "470", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "size(value: SizeOptions): T;", - "mainBuggyLine": "470" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/security_component.d.ts", - "codeContextStaerLine": "481", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constraintSize(value: ConstraintSizeOptions): T;", - "mainBuggyLine": "481" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/select.d.ts", - "codeContextStaerLine": "106", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "symbolIcon?: SymbolGlyphModifier;", - "mainBuggyLine": "106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/select.d.ts", - "codeContextStaerLine": "740", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "menuBackgroundColor(value: ResourceColor): SelectAttribute;", - "mainBuggyLine": "740" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/select.d.ts", - "codeContextStaerLine": "751", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "menuBackgroundBlurStyle(value: BlurStyle): SelectAttribute;", - "mainBuggyLine": "751" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/select.d.ts", - "codeContextStaerLine": "762", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "controlSize(value: ControlSize): SelectAttribute;", - "mainBuggyLine": "762" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/select.d.ts", - "codeContextStaerLine": "773", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "menuItemContentModifier(modifier: ContentModifier): SelectAttribute;", - "mainBuggyLine": "773" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/select.d.ts", - "codeContextStaerLine": "784", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "divider(options: Optional | null): SelectAttribute;", - "mainBuggyLine": "784" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/select.d.ts", - "codeContextStaerLine": "795", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface MenuItemConfiguration", - "mainBuggyLine": "795" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/shape.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface ShapeInterface", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/shape.d.ts", - "codeContextStaerLine": "77", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "new (value?: PixelMap): ShapeAttribute;", - "mainBuggyLine": "77" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/shape.d.ts", - "codeContextStaerLine": "106", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "(value: PixelMap): ShapeAttribute;", - "mainBuggyLine": "106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/shape.d.ts", - "codeContextStaerLine": "142", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(): ShapeAttribute;", - "mainBuggyLine": "142" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/shape.d.ts", - "codeContextStaerLine": "171", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class ShapeAttribute", - "mainBuggyLine": "171" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/shape.d.ts", - "codeContextStaerLine": "210", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "viewPort(value: { x?: number | string; y?: number | string; width?: number | string; height?: number | string }): ShapeAttribute;", - "mainBuggyLine": "210" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/shape.d.ts", - "codeContextStaerLine": "250", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "stroke(value: ResourceColor): ShapeAttribute;", - "mainBuggyLine": "250" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/shape.d.ts", - "codeContextStaerLine": "290", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fill(value: ResourceColor): ShapeAttribute;", - "mainBuggyLine": "290" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/shape.d.ts", - "codeContextStaerLine": "330", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "strokeDashOffset(value: number | string): ShapeAttribute;", - "mainBuggyLine": "330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/shape.d.ts", - "codeContextStaerLine": "370", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "strokeDashArray(value: Array): ShapeAttribute;", - "mainBuggyLine": "370" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/shape.d.ts", - "codeContextStaerLine": "410", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "strokeLineCap(value: LineCapStyle): ShapeAttribute;", - "mainBuggyLine": "410" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/shape.d.ts", - "codeContextStaerLine": "450", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "strokeLineJoin(value: LineJoinStyle): ShapeAttribute;", - "mainBuggyLine": "450" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/shape.d.ts", - "codeContextStaerLine": "490", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "strokeMiterLimit(value: number | string): ShapeAttribute;", - "mainBuggyLine": "490" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/shape.d.ts", - "codeContextStaerLine": "530", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "strokeOpacity(value: number | string | Resource): ShapeAttribute;", - "mainBuggyLine": "530" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/shape.d.ts", - "codeContextStaerLine": "570", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fillOpacity(value: number | string | Resource): ShapeAttribute;", - "mainBuggyLine": "570" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/shape.d.ts", - "codeContextStaerLine": "610", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "strokeWidth(value: number | string): ShapeAttribute;", - "mainBuggyLine": "610" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/shape.d.ts", - "codeContextStaerLine": "650", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "antiAlias(value: boolean): ShapeAttribute;", - "mainBuggyLine": "650" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/shape.d.ts", - "codeContextStaerLine": "698", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "mesh(value: Array, column: number, row: number): ShapeAttribute;", - "mainBuggyLine": "698" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/shape.d.ts", - "codeContextStaerLine": "731", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Shape: ShapeInterface;", - "mainBuggyLine": "731" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/shape.d.ts", - "codeContextStaerLine": "763", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const ShapeInstance: ShapeAttribute;", - "mainBuggyLine": "763" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/sidebar.d.ts", - "codeContextStaerLine": "345", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "icons?: {\n shown: string | PixelMap | Resource;\n hidden: string | PixelMap | Resource;\n switching?: string | PixelMap | Resource;\n };", - "mainBuggyLine": "345" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum SliderStyle", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "OutSet", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "118", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "InSet", - "mainBuggyLine": "118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "127", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "NONE", - "mainBuggyLine": "127" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "127", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NONE", - "mainBuggyLine": "127" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "164", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum SliderChangeMode", - "mainBuggyLine": "164" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "195", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Begin", - "mainBuggyLine": "195" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "227", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Moving", - "mainBuggyLine": "227" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "259", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "End", - "mainBuggyLine": "259" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "291", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Click", - "mainBuggyLine": "291" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "395", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface SliderOptions", - "mainBuggyLine": "395" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "430", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "value?: number;", - "mainBuggyLine": "430" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "466", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "min?: number;", - "mainBuggyLine": "466" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "502", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "max?: number;", - "mainBuggyLine": "502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "538", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "step?: number;", - "mainBuggyLine": "538" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "574", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "style?: SliderStyle;", - "mainBuggyLine": "574" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "610", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "direction?: Axis;", - "mainBuggyLine": "610" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "646", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "reverse?: boolean;", - "mainBuggyLine": "646" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "805", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type SliderTriggerChangeCallback = (value: number, mode: SliderChangeMode) => void;", - "mainBuggyLine": "805" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "805", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type SliderTriggerChangeCallback = (value: number, mode: SliderChangeMode) => void;", - "mainBuggyLine": "805" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "805", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [2] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "declare type SliderTriggerChangeCallback = (value: number, mode: SliderChangeMode) => void;", - "mainBuggyLine": "805" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "805", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type SliderTriggerChangeCallback = (value: number, mode: SliderChangeMode) => void;", - "mainBuggyLine": "805" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "815", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface SliderConfiguration", - "mainBuggyLine": "815" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "901", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface SliderInterface", - "mainBuggyLine": "901" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "940", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(options?: SliderOptions): SliderAttribute;", - "mainBuggyLine": "940" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "977", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class SliderAttribute", - "mainBuggyLine": "977" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1016", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "blockColor(value: ResourceColor): SliderAttribute;", - "mainBuggyLine": "1016" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1066", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "trackColor(value: ResourceColor | LinearGradient): SliderAttribute;", - "mainBuggyLine": "1066" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1066", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "trackColor(value: ResourceColor | LinearGradient): SliderAttribute;", - "mainBuggyLine": "1066" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1106", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "selectedColor(value: ResourceColor): SliderAttribute;", - "mainBuggyLine": "1106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1118", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "minLabel(value: string): SliderAttribute;", - "mainBuggyLine": "1118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1130", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maxLabel(value: string): SliderAttribute;", - "mainBuggyLine": "1130" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1170", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "showSteps(value: boolean): SliderAttribute;", - "mainBuggyLine": "1170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1214", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "showTips(value: boolean, content?: ResourceStr): SliderAttribute;", - "mainBuggyLine": "1214" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1254", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "trackThickness(value: Length): SliderAttribute;", - "mainBuggyLine": "1254" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1294", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onChange(callback: (value: number, mode: SliderChangeMode) => void): SliderAttribute;", - "mainBuggyLine": "1294" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1315", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "blockBorderColor(value: ResourceColor): SliderAttribute;", - "mainBuggyLine": "1315" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1336", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "blockBorderWidth(value: Length): SliderAttribute;", - "mainBuggyLine": "1336" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1357", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stepColor(value: ResourceColor): SliderAttribute;", - "mainBuggyLine": "1357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1378", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "trackBorderRadius(value: Length): SliderAttribute;", - "mainBuggyLine": "1378" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1389", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "selectedBorderRadius(value: Dimension): SliderAttribute;", - "mainBuggyLine": "1389" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1410", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "blockSize(value: SizeOptions): SliderAttribute;", - "mainBuggyLine": "1410" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1431", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "blockStyle(value: SliderBlockStyle): SliderAttribute;", - "mainBuggyLine": "1431" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1452", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stepSize(value: Length): SliderAttribute;", - "mainBuggyLine": "1452" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1463", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sliderInteractionMode(value: SliderInteraction): SliderAttribute;", - "mainBuggyLine": "1463" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1474", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "minResponsiveDistance(value: number): SliderAttribute;", - "mainBuggyLine": "1474" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1485", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contentModifier(modifier: ContentModifier): SliderAttribute;", - "mainBuggyLine": "1485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1496", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "slideRange(value: SlideRange): SliderAttribute;", - "mainBuggyLine": "1496" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1529", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Slider: SliderInterface;", - "mainBuggyLine": "1529" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts", - "codeContextStaerLine": "1561", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const SliderInstance: SliderAttribute;", - "mainBuggyLine": "1561" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/span.d.ts", - "codeContextStaerLine": "126", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "baselineOffset(value: LengthMetrics): T;", - "mainBuggyLine": "126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/span.d.ts", - "codeContextStaerLine": "163", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface SpanInterface", - "mainBuggyLine": "163" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/span.d.ts", - "codeContextStaerLine": "202", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(value: string | Resource): SpanAttribute;", - "mainBuggyLine": "202" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/span.d.ts", - "codeContextStaerLine": "231", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class SpanAttribute", - "mainBuggyLine": "231" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/span.d.ts", - "codeContextStaerLine": "250", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "font(value: Font): SpanAttribute;", - "mainBuggyLine": "250" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/span.d.ts", - "codeContextStaerLine": "290", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontColor(value: ResourceColor): SpanAttribute;", - "mainBuggyLine": "290" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/span.d.ts", - "codeContextStaerLine": "330", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontSize(value: number | string | Resource): SpanAttribute;", - "mainBuggyLine": "330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/span.d.ts", - "codeContextStaerLine": "370", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontStyle(value: FontStyle): SpanAttribute;", - "mainBuggyLine": "370" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/span.d.ts", - "codeContextStaerLine": "410", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontWeight(value: number | FontWeight | string): SpanAttribute;", - "mainBuggyLine": "410" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/span.d.ts", - "codeContextStaerLine": "450", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontFamily(value: string | Resource): SpanAttribute;", - "mainBuggyLine": "450" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/span.d.ts", - "codeContextStaerLine": "541", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "letterSpacing(value: number | string): SpanAttribute;", - "mainBuggyLine": "541" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/span.d.ts", - "codeContextStaerLine": "581", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "textCase(value: TextCase): SpanAttribute;", - "mainBuggyLine": "581" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/span.d.ts", - "codeContextStaerLine": "601", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "lineHeight(value: Length): SpanAttribute;", - "mainBuggyLine": "601" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/span.d.ts", - "codeContextStaerLine": "622", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "textShadow(value: ShadowOptions | Array): SpanAttribute;", - "mainBuggyLine": "622" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/span.d.ts", - "codeContextStaerLine": "655", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Span: SpanInterface;", - "mainBuggyLine": "655" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/span.d.ts", - "codeContextStaerLine": "687", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const SpanInstance: SpanAttribute;", - "mainBuggyLine": "687" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/stack.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface StackInterface", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/stack.d.ts", - "codeContextStaerLine": "94", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(value?: { alignContent?: Alignment }): StackAttribute;", - "mainBuggyLine": "94" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/stack.d.ts", - "codeContextStaerLine": "123", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class StackAttribute", - "mainBuggyLine": "123" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/stack.d.ts", - "codeContextStaerLine": "162", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "alignContent(value: Alignment): StackAttribute;", - "mainBuggyLine": "162" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/stack.d.ts", - "codeContextStaerLine": "173", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pointLight(value: PointLightStyle): StackAttribute;", - "mainBuggyLine": "173" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/stack.d.ts", - "codeContextStaerLine": "206", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Stack: StackInterface;", - "mainBuggyLine": "206" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/stack.d.ts", - "codeContextStaerLine": "238", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const StackInstance: StackAttribute;", - "mainBuggyLine": "238" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/styled_string.d.ts", - "codeContextStaerLine": "778", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type StyledStringValue = TextStyle | DecorationStyle | BaselineOffsetStyle | LetterSpacingStyle | TextShadowStyle | \nGestureStyle | ImageAttachment | ParagraphStyle | LineHeightStyle | CustomSpan;", - "mainBuggyLine": "778" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "44", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class SwiperController", - "mainBuggyLine": "44" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "68", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "68" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "93", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "showNext();", - "mainBuggyLine": "93" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "118", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "showPrevious();", - "mainBuggyLine": "118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "131", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "changeIndex(index: number, useAnimation?: boolean);", - "mainBuggyLine": "131" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "131", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "changeIndex(index: number, useAnimation?: boolean);", - "mainBuggyLine": "131" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "159", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "finishAnimation(callback?: () => void);", - "mainBuggyLine": "159" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "179", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class Indicator", - "mainBuggyLine": "179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "201", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "left(value: Length): T;", - "mainBuggyLine": "201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "224", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "top(value: Length): T;", - "mainBuggyLine": "224" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "247", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "right(value: Length): T;", - "mainBuggyLine": "247" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "270", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "bottom(value: Length): T;", - "mainBuggyLine": "270" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "283", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "start(value: LengthMetrics): T;", - "mainBuggyLine": "283" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "283", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "start(value: LengthMetrics): T;", - "mainBuggyLine": "283" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "296", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "end(value: LengthMetrics): T;", - "mainBuggyLine": "296" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "296", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "end(value: LengthMetrics): T;", - "mainBuggyLine": "296" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "319", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "static dot(): DotIndicator;", - "mainBuggyLine": "319" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "342", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "static digit(): DigitIndicator;", - "mainBuggyLine": "342" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "364", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class DotIndicator", - "mainBuggyLine": "364" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "382", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "382" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "405", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "itemWidth(value: Length): DotIndicator;", - "mainBuggyLine": "405" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "428", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "itemHeight(value: Length): DotIndicator;", - "mainBuggyLine": "428" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "451", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "selectedItemWidth(value: Length): DotIndicator;", - "mainBuggyLine": "451" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "474", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "selectedItemHeight(value: Length): DotIndicator;", - "mainBuggyLine": "474" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "497", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "mask(value: boolean): DotIndicator;", - "mainBuggyLine": "497" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "520", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "color(value: ResourceColor): DotIndicator;", - "mainBuggyLine": "520" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "543", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "selectedColor(value: ResourceColor): DotIndicator;", - "mainBuggyLine": "543" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "554", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maxDisplayCount(maxDisplayCount: number): DotIndicator;", - "mainBuggyLine": "554" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "572", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type SwiperAutoFill = {\n /**\n * Set minSize size.\n *\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 10\n * @form\n */\n /**\n * Set minSize size.\n *\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @atomicservice\n * @since 11\n * @form\n */\n minSize: VP;\n};", - "mainBuggyLine": "572" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "572", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type SwiperAutoFill = {\n /**\n * Set minSize size.\n *\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 10\n * @form\n */\n /**\n * Set minSize size.\n *\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @atomicservice\n * @since 11\n * @form\n */\n minSize: VP;\n};", - "mainBuggyLine": "572" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "610", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class DigitIndicator", - "mainBuggyLine": "610" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "628", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "628" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "651", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontColor(value: ResourceColor): DigitIndicator;", - "mainBuggyLine": "651" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "674", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "selectedFontColor(value: ResourceColor): DigitIndicator;", - "mainBuggyLine": "674" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "697", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "digitFont(value: Font): DigitIndicator;", - "mainBuggyLine": "697" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "720", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "selectedDigitFont(value: Font): DigitIndicator;", - "mainBuggyLine": "720" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "895", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum SwiperDisplayMode", - "mainBuggyLine": "895" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "905", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [useinstead] labels.", - "language": "ts", - "mainBuggyCode": "Stretch", - "mainBuggyLine": "905" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "905", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "Stretch", - "mainBuggyLine": "905" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "916", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [useinstead] labels.", - "language": "ts", - "mainBuggyCode": "AutoLinear", - "mainBuggyLine": "916" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "916", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AutoLinear", - "mainBuggyLine": "916" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "935", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "STRETCH", - "mainBuggyLine": "935" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "985", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface SwiperInterface", - "mainBuggyLine": "985" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1015", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(controller?: SwiperController): SwiperAttribute;", - "mainBuggyLine": "1015" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1241", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class SwiperAttribute", - "mainBuggyLine": "1241" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1271", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "index(value: number): SwiperAttribute;", - "mainBuggyLine": "1271" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1302", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "autoPlay(value: boolean): SwiperAttribute;", - "mainBuggyLine": "1302" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1333", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "interval(value: number): SwiperAttribute;", - "mainBuggyLine": "1333" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1364", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "indicator(value: DotIndicator | DigitIndicator | boolean): SwiperAttribute;", - "mainBuggyLine": "1364" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1386", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "displayArrow(value: ArrowStyle | boolean, isHoverShow?: boolean): SwiperAttribute;", - "mainBuggyLine": "1386" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1417", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "loop(value: boolean): SwiperAttribute;", - "mainBuggyLine": "1417" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1446", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "duration(value: number): SwiperAttribute;", - "mainBuggyLine": "1446" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1477", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "vertical(value: boolean): SwiperAttribute;", - "mainBuggyLine": "1477" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1508", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "itemSpace(value: number | string): SwiperAttribute;", - "mainBuggyLine": "1508" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1539", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "displayMode(value: SwiperDisplayMode): SwiperAttribute;", - "mainBuggyLine": "1539" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1570", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "cachedCount(value: number): SwiperAttribute;", - "mainBuggyLine": "1570" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1609", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "displayCount(value: number | string | SwiperAutoFill, swipeByGroup?: boolean): SwiperAttribute;", - "mainBuggyLine": "1609" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1640", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "effectMode(value: EdgeEffect): SwiperAttribute;", - "mainBuggyLine": "1640" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1671", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "disableSwipe(value: boolean): SwiperAttribute;", - "mainBuggyLine": "1671" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1706", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "curve(value: Curve | string | ICurve): SwiperAttribute;", - "mainBuggyLine": "1706" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1737", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onChange(event: (index: number) => void): SwiperAttribute;", - "mainBuggyLine": "1737" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1748", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "indicatorStyle(value?: IndicatorStyle): SwiperAttribute;", - "mainBuggyLine": "1748" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1779", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "prevMargin(value: Length, ignoreBlank?: boolean): SwiperAttribute;", - "mainBuggyLine": "1779" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1810", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "nextMargin(value: Length, ignoreBlank?: boolean): SwiperAttribute;", - "mainBuggyLine": "1810" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1847", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onAnimationStart(event: (index: number, targetIndex: number, extraInfo: SwiperAnimationEvent) => void): SwiperAttribute;", - "mainBuggyLine": "1847" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1882", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onAnimationEnd(event: (index: number, extraInfo: SwiperAnimationEvent) => void): SwiperAttribute;", - "mainBuggyLine": "1882" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1907", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onGestureSwipe(event: (index: number, extraInfo: SwiperAnimationEvent) => void): SwiperAttribute;", - "mainBuggyLine": "1907" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1919", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "nestedScroll(value: SwiperNestedScrollMode): SwiperAttribute;", - "mainBuggyLine": "1919" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1930", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "customContentTransition(transition: SwiperContentAnimatedTransition): SwiperAttribute;", - "mainBuggyLine": "1930" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1945", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onContentDidScroll(handler: ContentDidScrollCallback): SwiperAttribute;", - "mainBuggyLine": "1945" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "1956", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "indicatorInteractive(value: boolean): SwiperAttribute;", - "mainBuggyLine": "1956" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "2062", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type ContentDidScrollCallback = (selectedIndex: number, index: number, position: number, mainAxisLength: number) => void;", - "mainBuggyLine": "2062" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "2062", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type ContentDidScrollCallback = (selectedIndex: number, index: number, position: number, mainAxisLength: number) => void;", - "mainBuggyLine": "2062" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "2062", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type ContentDidScrollCallback = (selectedIndex: number, index: number, position: number, mainAxisLength: number) => void;", - "mainBuggyLine": "2062" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "2062", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type ContentDidScrollCallback = (selectedIndex: number, index: number, position: number, mainAxisLength: number) => void;", - "mainBuggyLine": "2062" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "2062", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [4] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "declare type ContentDidScrollCallback = (selectedIndex: number, index: number, position: number, mainAxisLength: number) => void;", - "mainBuggyLine": "2062" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "2062", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type ContentDidScrollCallback = (selectedIndex: number, index: number, position: number, mainAxisLength: number) => void;", - "mainBuggyLine": "2062" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "2087", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Swiper: SwiperInterface;", - "mainBuggyLine": "2087" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts", - "codeContextStaerLine": "2112", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const SwiperInstance: SwiperAttribute;", - "mainBuggyLine": "2112" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/symbolglyph.d.ts", - "codeContextStaerLine": "639", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "symbolEffect(symbolEffect: SymbolEffect, isActive?: boolean): SymbolGlyphAttribute;", - "mainBuggyLine": "639" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/symbolglyph.d.ts", - "codeContextStaerLine": "651", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "symbolEffect(symbolEffect: SymbolEffect, triggerValue?: number): SymbolGlyphAttribute;", - "mainBuggyLine": "651" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/tabs.d.ts", - "codeContextStaerLine": "1067", - "defectLevel": 2, - "defectType": "API_DEFINE_NAME_01", - "description": "API check error of [naming errors]: Prohibited word in [animationmode(mode: optional): tabsattribute;]:{option}.The word allowed is [options].", - "language": "ts", - "mainBuggyCode": "animationMode(mode: Optional): TabsAttribute;", - "mainBuggyLine": "1067" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/tabs.d.ts", - "codeContextStaerLine": "1322", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "customContentTransition(delegate: (from: number, to: number) => TabContentAnimatedTransition | undefined): TabsAttribute;", - "mainBuggyLine": "1322" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/tabs.d.ts", - "codeContextStaerLine": "1372", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface TabContentAnimatedTransition", - "mainBuggyLine": "1372" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/tabs.d.ts", - "codeContextStaerLine": "1396", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "timeout?: number;", - "mainBuggyLine": "1396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/tabs.d.ts", - "codeContextStaerLine": "1417", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "transition: (proxy: TabContentTransitionProxy) => void;", - "mainBuggyLine": "1417" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/tabs.d.ts", - "codeContextStaerLine": "1439", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface TabContentTransitionProxy", - "mainBuggyLine": "1439" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/tabs.d.ts", - "codeContextStaerLine": "1459", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "from: number;", - "mainBuggyLine": "1459" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/tabs.d.ts", - "codeContextStaerLine": "1480", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "to: number;", - "mainBuggyLine": "1480" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/tabs.d.ts", - "codeContextStaerLine": "1499", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "finishTransition(): void;", - "mainBuggyLine": "1499" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/tab_content.d.ts", - "codeContextStaerLine": "447", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "selectedColor?: ResourceColor;", - "mainBuggyLine": "447" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/tab_content.d.ts", - "codeContextStaerLine": "457", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "unselectedColor?: ResourceColor;", - "mainBuggyLine": "457" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/tab_content.d.ts", - "codeContextStaerLine": "808", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(icon: ResourceStr | TabBarSymbol, text: ResourceStr);", - "mainBuggyLine": "808" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/tab_content.d.ts", - "codeContextStaerLine": "844", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static of(icon: ResourceStr | TabBarSymbol, text: ResourceStr): BottomTabBarStyle;", - "mainBuggyLine": "844" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/tab_content.d.ts", - "codeContextStaerLine": "895", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "padding(value: Padding | Dimension | LocalizedPadding): BottomTabBarStyle;", - "mainBuggyLine": "895" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/tab_content.d.ts", - "codeContextStaerLine": "990", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "iconStyle(style: TabBarIconStyle): BottomTabBarStyle;", - "mainBuggyLine": "990" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface TextInterface", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "124", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class TextAttribute", - "mainBuggyLine": "124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "143", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "font(value: Font): TextAttribute;", - "mainBuggyLine": "143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "183", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontColor(value: ResourceColor): TextAttribute;", - "mainBuggyLine": "183" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "223", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontSize(value: number | string | Resource): TextAttribute;", - "mainBuggyLine": "223" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "263", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "minFontSize(value: number | string | Resource): TextAttribute;", - "mainBuggyLine": "263" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "303", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "maxFontSize(value: number | string | Resource): TextAttribute;", - "mainBuggyLine": "303" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "343", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontStyle(value: FontStyle): TextAttribute;", - "mainBuggyLine": "343" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "383", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontWeight(value: number | FontWeight | string): TextAttribute;", - "mainBuggyLine": "383" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "394", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "lineSpacing(value: LengthMetrics): TextAttribute;", - "mainBuggyLine": "394" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "434", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "textAlign(value: TextAlign): TextAttribute;", - "mainBuggyLine": "434" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "474", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "lineHeight(value: number | string | Resource): TextAttribute;", - "mainBuggyLine": "474" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "514", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "textOverflow(value: { overflow: TextOverflow }): TextAttribute;", - "mainBuggyLine": "514" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "554", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontFamily(value: string | Resource): TextAttribute;", - "mainBuggyLine": "554" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "594", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "maxLines(value: number): TextAttribute;", - "mainBuggyLine": "594" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "685", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "letterSpacing(value: number | string): TextAttribute;", - "mainBuggyLine": "685" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "725", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "textCase(value: TextCase): TextAttribute;", - "mainBuggyLine": "725" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "765", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "baselineOffset(value: number | string): TextAttribute;", - "mainBuggyLine": "765" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "797", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "copyOption(value: CopyOptions): TextAttribute;", - "mainBuggyLine": "797" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "816", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "draggable(value: boolean): TextAttribute;", - "mainBuggyLine": "816" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "839", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "textShadow(value: ShadowOptions | Array): TextAttribute;", - "mainBuggyLine": "839" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "860", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "heightAdaptivePolicy(value: TextHeightAdaptivePolicy): TextAttribute;", - "mainBuggyLine": "860" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "881", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "textIndent(value: Length): TextAttribute;", - "mainBuggyLine": "881" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "893", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "wordBreak(value: WordBreak): TextAttribute;", - "mainBuggyLine": "893" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "904", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "lineBreakStrategy(strategy: LineBreakStrategy): TextAttribute;", - "mainBuggyLine": "904" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "916", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onCopy(callback: (value: string) => void): TextAttribute;", - "mainBuggyLine": "916" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "929", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "selection(selectionStart: number, selectionEnd: number): TextAttribute;", - "mainBuggyLine": "929" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "950", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ellipsisMode(value: EllipsisMode): TextAttribute;", - "mainBuggyLine": "950" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "969", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableDataDetector(enable: boolean): TextAttribute;", - "mainBuggyLine": "969" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "988", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dataDetectorConfig(config: TextDataDetectorConfig): TextAttribute;", - "mainBuggyLine": "988" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "1015", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bindSelectionMenu(spanType: TextSpanType, content: CustomBuilder, responseType: TextResponseType,\n options?: SelectionMenuOptions): TextAttribute;", - "mainBuggyLine": "1015" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "1037", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onTextSelectionChange(callback: (selectionStart: number, selectionEnd: number) => void): TextAttribute;", - "mainBuggyLine": "1037" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "1052", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fontFeature(value: string): TextAttribute;", - "mainBuggyLine": "1052" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "1063", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "marqueeOptions(value: Optional): TextAttribute;", - "mainBuggyLine": "1063" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "1074", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onMarqueeStateChange(callback: Callback): TextAttribute;", - "mainBuggyLine": "1074" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "1085", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "privacySensitive(supported: boolean): TextAttribute;", - "mainBuggyLine": "1085" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "1097", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "textSelectable(mode: TextSelectableMode): TextAttribute;", - "mainBuggyLine": "1097" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "1130", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const TextInstance: TextAttribute;", - "mainBuggyLine": "1130" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "1162", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Text: TextInterface;", - "mainBuggyLine": "1162" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts", - "codeContextStaerLine": "1528", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setStyledString(value: StyledString): void;", - "mainBuggyLine": "1528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_area.d.ts", - "codeContextStaerLine": "396", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NUMBER_DECIMAL = 12", - "mainBuggyLine": "396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_area.d.ts", - "codeContextStaerLine": "700", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "enterKeyType(value: EnterKeyType): TextAreaAttribute;", - "mainBuggyLine": "700" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_area.d.ts", - "codeContextStaerLine": "914", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "textOverflow(value: TextOverflow): TextAreaAttribute;", - "mainBuggyLine": "914" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_area.d.ts", - "codeContextStaerLine": "925", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "textIndent(value: Dimension): TextAreaAttribute;", - "mainBuggyLine": "925" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_area.d.ts", - "codeContextStaerLine": "968", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "caretStyle(value: CaretStyle): TextAreaAttribute;", - "mainBuggyLine": "968" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_area.d.ts", - "codeContextStaerLine": "979", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "selectedBackgroundColor(value: ResourceColor): TextAreaAttribute;", - "mainBuggyLine": "979" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_area.d.ts", - "codeContextStaerLine": "1346", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "minFontSize(value: number | string | Resource): TextAreaAttribute;", - "mainBuggyLine": "1346" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_area.d.ts", - "codeContextStaerLine": "1357", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maxFontSize(value: number | string | Resource): TextAreaAttribute;", - "mainBuggyLine": "1357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_area.d.ts", - "codeContextStaerLine": "1368", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "heightAdaptivePolicy(value: TextHeightAdaptivePolicy): TextAreaAttribute;", - "mainBuggyLine": "1368" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_area.d.ts", - "codeContextStaerLine": "1399", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "wordBreak(value: WordBreak): TextAreaAttribute;", - "mainBuggyLine": "1399" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_area.d.ts", - "codeContextStaerLine": "1410", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "lineBreakStrategy(strategy: LineBreakStrategy): TextAreaAttribute;", - "mainBuggyLine": "1410" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_area.d.ts", - "codeContextStaerLine": "1452", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "decoration(value: TextDecorationOptions): TextAreaAttribute;", - "mainBuggyLine": "1452" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_area.d.ts", - "codeContextStaerLine": "1463", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "letterSpacing(value: number | string | Resource): TextAreaAttribute;", - "mainBuggyLine": "1463" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_area.d.ts", - "codeContextStaerLine": "1474", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "lineSpacing(value: LengthMetrics): TextAreaAttribute;", - "mainBuggyLine": "1474" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_area.d.ts", - "codeContextStaerLine": "1485", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "lineHeight(value: number | string | Resource): TextAreaAttribute;", - "mainBuggyLine": "1485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_area.d.ts", - "codeContextStaerLine": "1543", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fontFeature(value: string): TextAreaAttribute;", - "mainBuggyLine": "1543" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_area.d.ts", - "codeContextStaerLine": "1554", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillInsert(callback: Callback): TextAreaAttribute;", - "mainBuggyLine": "1554" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_area.d.ts", - "codeContextStaerLine": "1565", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDidInsert(callback: Callback): TextAreaAttribute;", - "mainBuggyLine": "1565" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_area.d.ts", - "codeContextStaerLine": "1576", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillDelete(callback: Callback): TextAreaAttribute;", - "mainBuggyLine": "1576" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_area.d.ts", - "codeContextStaerLine": "1587", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDidDelete(callback: Callback): TextAreaAttribute;", - "mainBuggyLine": "1587" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_clock.d.ts", - "codeContextStaerLine": "43", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class TextClockController", - "mainBuggyLine": "43" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_clock.d.ts", - "codeContextStaerLine": "66", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "66" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_clock.d.ts", - "codeContextStaerLine": "89", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "start();", - "mainBuggyLine": "89" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_clock.d.ts", - "codeContextStaerLine": "112", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "stop();", - "mainBuggyLine": "112" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_clock.d.ts", - "codeContextStaerLine": "123", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface TextClockConfiguration", - "mainBuggyLine": "123" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_clock.d.ts", - "codeContextStaerLine": "182", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface TextClockInterface", - "mainBuggyLine": "182" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_clock.d.ts", - "codeContextStaerLine": "220", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(options?: { timeZoneOffset?: number; controller?: TextClockController }): TextClockAttribute;", - "mainBuggyLine": "220" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_clock.d.ts", - "codeContextStaerLine": "248", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class TextClockAttribute", - "mainBuggyLine": "248" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_clock.d.ts", - "codeContextStaerLine": "289", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "format(value: string): TextClockAttribute;", - "mainBuggyLine": "289" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_clock.d.ts", - "codeContextStaerLine": "336", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onDateChange(event: (value: number) => void): TextClockAttribute;", - "mainBuggyLine": "336" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_clock.d.ts", - "codeContextStaerLine": "366", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontColor(value: ResourceColor): TextClockAttribute;", - "mainBuggyLine": "366" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_clock.d.ts", - "codeContextStaerLine": "396", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontSize(value: Length): TextClockAttribute;", - "mainBuggyLine": "396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_clock.d.ts", - "codeContextStaerLine": "426", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontStyle(value: FontStyle): TextClockAttribute;", - "mainBuggyLine": "426" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_clock.d.ts", - "codeContextStaerLine": "456", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontWeight(value: number | FontWeight | string): TextClockAttribute;", - "mainBuggyLine": "456" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_clock.d.ts", - "codeContextStaerLine": "486", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontFamily(value: ResourceStr): TextClockAttribute;", - "mainBuggyLine": "486" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_clock.d.ts", - "codeContextStaerLine": "509", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "textShadow(value: ShadowOptions | Array): TextClockAttribute;", - "mainBuggyLine": "509" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_clock.d.ts", - "codeContextStaerLine": "538", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontFeature(value: string): TextClockAttribute;", - "mainBuggyLine": "538" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_clock.d.ts", - "codeContextStaerLine": "549", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contentModifier(modifier: ContentModifier): TextClockAttribute;", - "mainBuggyLine": "549" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_common.d.ts", - "codeContextStaerLine": "289", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type OnDidChangeCallback = (rangeBefore: TextRange, rangeAfter: TextRange) => void;", - "mainBuggyLine": "289" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_common.d.ts", - "codeContextStaerLine": "289", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type OnDidChangeCallback = (rangeBefore: TextRange, rangeAfter: TextRange) => void;", - "mainBuggyLine": "289" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_common.d.ts", - "codeContextStaerLine": "289", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [2] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "declare type OnDidChangeCallback = (rangeBefore: TextRange, rangeAfter: TextRange) => void;", - "mainBuggyLine": "289" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_common.d.ts", - "codeContextStaerLine": "289", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type OnDidChangeCallback = (rangeBefore: TextRange, rangeAfter: TextRange) => void;", - "mainBuggyLine": "289" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_common.d.ts", - "codeContextStaerLine": "341", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface TextEditControllerEx", - "mainBuggyLine": "341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_input.d.ts", - "codeContextStaerLine": "185", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCREEN_LOCK_PASSWORD = 9", - "mainBuggyLine": "185" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_input.d.ts", - "codeContextStaerLine": "1192", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "textOverflow(value: TextOverflow): TextInputAttribute;", - "mainBuggyLine": "1192" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_input.d.ts", - "codeContextStaerLine": "1203", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "textIndent(value: Dimension): TextInputAttribute;", - "mainBuggyLine": "1203" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_input.d.ts", - "codeContextStaerLine": "1302", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onEditChanged(callback: (isEditing: boolean) => void): TextInputAttribute;", - "mainBuggyLine": "1302" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_input.d.ts", - "codeContextStaerLine": "2028", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "underlineColor(value: ResourceColor | UnderlineColor | undefined): TextInputAttribute;", - "mainBuggyLine": "2028" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_input.d.ts", - "codeContextStaerLine": "2099", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "wordBreak(value: WordBreak): TextInputAttribute;", - "mainBuggyLine": "2099" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_input.d.ts", - "codeContextStaerLine": "2110", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "lineBreakStrategy(strategy: LineBreakStrategy): TextInputAttribute;", - "mainBuggyLine": "2110" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_input.d.ts", - "codeContextStaerLine": "2208", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "minFontSize(value: number | string | Resource): TextInputAttribute;", - "mainBuggyLine": "2208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_input.d.ts", - "codeContextStaerLine": "2219", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maxFontSize(value: number | string | Resource): TextInputAttribute;", - "mainBuggyLine": "2219" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_input.d.ts", - "codeContextStaerLine": "2230", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "heightAdaptivePolicy(value: TextHeightAdaptivePolicy): TextInputAttribute;", - "mainBuggyLine": "2230" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_input.d.ts", - "codeContextStaerLine": "2260", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "decoration(value: TextDecorationOptions): TextInputAttribute;", - "mainBuggyLine": "2260" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_input.d.ts", - "codeContextStaerLine": "2271", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "letterSpacing(value: number | string | Resource): TextInputAttribute;", - "mainBuggyLine": "2271" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_input.d.ts", - "codeContextStaerLine": "2282", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "lineHeight(value: number | string | Resource): TextInputAttribute;", - "mainBuggyLine": "2282" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_input.d.ts", - "codeContextStaerLine": "2316", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fontFeature(value: string): TextInputAttribute;", - "mainBuggyLine": "2316" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_input.d.ts", - "codeContextStaerLine": "2327", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "showPassword(visible: boolean): TextInputAttribute;", - "mainBuggyLine": "2327" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_input.d.ts", - "codeContextStaerLine": "2338", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onSecurityStateChange(callback: Callback): TextInputAttribute;", - "mainBuggyLine": "2338" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_input.d.ts", - "codeContextStaerLine": "2349", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillInsert(callback: Callback): TextInputAttribute;", - "mainBuggyLine": "2349" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_input.d.ts", - "codeContextStaerLine": "2360", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDidInsert(callback: Callback): TextInputAttribute;", - "mainBuggyLine": "2360" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_input.d.ts", - "codeContextStaerLine": "2371", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillDelete(callback: Callback): TextInputAttribute;", - "mainBuggyLine": "2371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_input.d.ts", - "codeContextStaerLine": "2382", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDidDelete(callback: Callback): TextInputAttribute;", - "mainBuggyLine": "2382" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_picker.d.ts", - "codeContextStaerLine": "491", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onAccept(callback: (value: string, index: number) => void): TextPickerAttribute;", - "mainBuggyLine": "491" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_picker.d.ts", - "codeContextStaerLine": "502", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onCancel(callback: () => void): TextPickerAttribute;", - "mainBuggyLine": "502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_picker.d.ts", - "codeContextStaerLine": "567", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "divider(value: DividerOptions | null): TextPickerAttribute;", - "mainBuggyLine": "567" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_picker.d.ts", - "codeContextStaerLine": "578", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "gradientHeight(value: Dimension): TextPickerAttribute;", - "mainBuggyLine": "578" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_picker.d.ts", - "codeContextStaerLine": "685", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface TextPickerDialogOptions", - "mainBuggyLine": "685" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_picker.d.ts", - "codeContextStaerLine": "778", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "acceptButtonStyle?: PickerDialogButtonStyle;", - "mainBuggyLine": "778" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_picker.d.ts", - "codeContextStaerLine": "788", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "cancelButtonStyle?: PickerDialogButtonStyle;", - "mainBuggyLine": "788" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_picker.d.ts", - "codeContextStaerLine": "1015", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillAppear?: () => void;", - "mainBuggyLine": "1015" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_picker.d.ts", - "codeContextStaerLine": "1025", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillDisappear?: () => void;", - "mainBuggyLine": "1025" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_picker.d.ts", - "codeContextStaerLine": "1035", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "shadow?: ShadowOptions | ShadowStyle;", - "mainBuggyLine": "1035" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "43", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class TextTimerController", - "mainBuggyLine": "43" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "67", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "67" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "92", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "start();", - "mainBuggyLine": "92" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "117", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "pause();", - "mainBuggyLine": "117" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "142", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "reset();", - "mainBuggyLine": "142" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "153", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface TextTimerConfiguration", - "mainBuggyLine": "153" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "224", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface TextTimerOptions", - "mainBuggyLine": "224" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "251", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "isCountDown?: boolean;", - "mainBuggyLine": "251" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "285", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "count?: number;", - "mainBuggyLine": "285" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "313", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "controller?: TextTimerController;", - "mainBuggyLine": "313" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "342", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface TextTimerInterface", - "mainBuggyLine": "342" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "372", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(options?: TextTimerOptions): TextTimerAttribute;", - "mainBuggyLine": "372" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "400", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class TextTimerAttribute", - "mainBuggyLine": "400" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "433", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "format(value: string): TextTimerAttribute;", - "mainBuggyLine": "433" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "464", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontColor(value: ResourceColor): TextTimerAttribute;", - "mainBuggyLine": "464" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "495", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontSize(value: Length): TextTimerAttribute;", - "mainBuggyLine": "495" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "526", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontStyle(value: FontStyle): TextTimerAttribute;", - "mainBuggyLine": "526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "557", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontWeight(value: number | FontWeight | string): TextTimerAttribute;", - "mainBuggyLine": "557" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "588", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fontFamily(value: ResourceStr): TextTimerAttribute;", - "mainBuggyLine": "588" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "619", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onTimer(event: (utc: number, elapsedTime: number) => void): TextTimerAttribute;", - "mainBuggyLine": "619" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "640", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "textShadow(value: ShadowOptions | Array): TextTimerAttribute;", - "mainBuggyLine": "640" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "651", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contentModifier(modifier: ContentModifier): TextTimerAttribute;", - "mainBuggyLine": "651" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "677", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const TextTimer: TextTimerInterface;", - "mainBuggyLine": "677" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts", - "codeContextStaerLine": "702", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const TextTimerInstance: TextTimerAttribute;", - "mainBuggyLine": "702" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/time_picker.d.ts", - "codeContextStaerLine": "439", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dateTimeOptions(value: DateTimeOptions): TimePickerAttribute;", - "mainBuggyLine": "439" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/time_picker.d.ts", - "codeContextStaerLine": "478", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableHapticFeedback(enable: boolean): TimePickerAttribute;", - "mainBuggyLine": "478" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/time_picker.d.ts", - "codeContextStaerLine": "505", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface TimePickerDialogOptions", - "mainBuggyLine": "505" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/time_picker.d.ts", - "codeContextStaerLine": "578", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "acceptButtonStyle?: PickerDialogButtonStyle;", - "mainBuggyLine": "578" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/time_picker.d.ts", - "codeContextStaerLine": "588", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "cancelButtonStyle?: PickerDialogButtonStyle;", - "mainBuggyLine": "588" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/time_picker.d.ts", - "codeContextStaerLine": "816", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillAppear?: () => void;", - "mainBuggyLine": "816" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/time_picker.d.ts", - "codeContextStaerLine": "826", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillDisappear?: () => void;", - "mainBuggyLine": "826" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/time_picker.d.ts", - "codeContextStaerLine": "836", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "shadow?: ShadowOptions | ShadowStyle;", - "mainBuggyLine": "836" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/time_picker.d.ts", - "codeContextStaerLine": "846", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dateTimeOptions?: DateTimeOptions;", - "mainBuggyLine": "846" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/toggle.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare enum ToggleType", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/toggle.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Checkbox", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/toggle.d.ts", - "codeContextStaerLine": "118", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Switch", - "mainBuggyLine": "118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/toggle.d.ts", - "codeContextStaerLine": "150", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "Button", - "mainBuggyLine": "150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/toggle.d.ts", - "codeContextStaerLine": "211", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface ToggleConfiguration", - "mainBuggyLine": "211" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/toggle.d.ts", - "codeContextStaerLine": "278", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface ToggleInterface", - "mainBuggyLine": "278" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/toggle.d.ts", - "codeContextStaerLine": "317", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "(options: { type: ToggleType; isOn?: boolean }): ToggleAttribute;", - "mainBuggyLine": "317" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/toggle.d.ts", - "codeContextStaerLine": "354", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class ToggleAttribute", - "mainBuggyLine": "354" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/toggle.d.ts", - "codeContextStaerLine": "393", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "onChange(callback: (isOn: boolean) => void): ToggleAttribute;", - "mainBuggyLine": "393" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/toggle.d.ts", - "codeContextStaerLine": "404", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contentModifier(modifier: ContentModifier): ToggleAttribute;", - "mainBuggyLine": "404" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/toggle.d.ts", - "codeContextStaerLine": "444", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "selectedColor(value: ResourceColor): ToggleAttribute;", - "mainBuggyLine": "444" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/toggle.d.ts", - "codeContextStaerLine": "484", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "switchPointColor(color: ResourceColor): ToggleAttribute;", - "mainBuggyLine": "484" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/toggle.d.ts", - "codeContextStaerLine": "495", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "switchStyle(value: SwitchStyle): ToggleAttribute;", - "mainBuggyLine": "495" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/toggle.d.ts", - "codeContextStaerLine": "528", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const Toggle: ToggleInterface;", - "mainBuggyLine": "528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/toggle.d.ts", - "codeContextStaerLine": "560", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare const ToggleInstance: ToggleAttribute;", - "mainBuggyLine": "560" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/ui_extension_component.d.ts", - "codeContextStaerLine": "233", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [2] [param] tag is incorrect. Please check if it matches the [2] parameter name.", - "language": "ts", - "mainBuggyCode": "(\n want: import('../api/@ohos.app.ability.Want').default,\n options?: UIExtensionOptions\n ): UIExtensionComponentAttribute;", - "mainBuggyLine": "233" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "53", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type Resource = import('../api/global/resource').Resource;", - "mainBuggyLine": "53" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "53", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type Resource = import('../api/global/resource').Resource;", - "mainBuggyLine": "53" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "85", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type Length = string | number | Resource;", - "mainBuggyLine": "85" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "85", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type Length = string | number | Resource;", - "mainBuggyLine": "85" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "100", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type PX = `${number}px`;", - "mainBuggyLine": "100" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "115", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type VP = `${number}vp` | number;", - "mainBuggyLine": "115" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "130", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type FP = `${number}fp`;", - "mainBuggyLine": "130" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "145", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type LPX = `${number}lpx`;", - "mainBuggyLine": "145" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "160", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type Percentage = `${number}%`;", - "mainBuggyLine": "160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "175", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type Degree = `${number}deg`;", - "mainBuggyLine": "175" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "190", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type Dimension = PX | VP | FP | LPX | Percentage | Resource;", - "mainBuggyLine": "190" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "222", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type ResourceStr = string | Resource;", - "mainBuggyLine": "222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "222", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type ResourceStr = string | Resource;", - "mainBuggyLine": "222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "254", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type Padding = {\n /**\n * top property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 7\n */\n /**\n * top property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * top property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * top property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n top?: Length;\n\n /**\n * right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 7\n */\n /**\n * right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n right?: Length;\n\n /**\n * bottom property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 7\n */\n /**\n * bottom property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * bottom property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * bottom property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n bottom?: Length;\n\n /**\n * left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 7\n */\n /**\n * left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n left?: Length;\n};", - "mainBuggyLine": "254" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "254", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type Padding = {\n /**\n * top property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 7\n */\n /**\n * top property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * top property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * top property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n top?: Length;\n\n /**\n * right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 7\n */\n /**\n * right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n right?: Length;\n\n /**\n * bottom property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 7\n */\n /**\n * bottom property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * bottom property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * bottom property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n bottom?: Length;\n\n /**\n * left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 7\n */\n /**\n * left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n left?: Length;\n};", - "mainBuggyLine": "254" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "485", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type Margin = Padding;", - "mainBuggyLine": "485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "485", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type Margin = Padding;", - "mainBuggyLine": "485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "502", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type EdgeWidth = EdgeWidths;", - "mainBuggyLine": "502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "528", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type EdgeWidths = {\n /**\n * top property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * top property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * top property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n top?: Length;\n\n /**\n * right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n right?: Length;\n\n /**\n * bottom property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * bottom property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * bottom property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n bottom?: Length;\n\n /**\n * left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n left?: Length;\n};", - "mainBuggyLine": "528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "528", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type EdgeWidths = {\n /**\n * top property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * top property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * top property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n top?: Length;\n\n /**\n * right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n right?: Length;\n\n /**\n * bottom property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * bottom property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * bottom property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n bottom?: Length;\n\n /**\n * left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n left?: Length;\n};", - "mainBuggyLine": "528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "718", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type EdgeOutlineWidths = {\n /**\n * top outline width property.\n *\n * @type { ?Dimension }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n top?: Dimension;\n\n /**\n * right outline width property.\n *\n * @type { ?Dimension }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n right?: Dimension;\n\n /**\n * bottom outline width property.\n *\n * @type { ?Dimension }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n bottom?: Dimension;\n\n /**\n * left outline width property.\n *\n * @type { ?Dimension }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n left?: Dimension;\n};", - "mainBuggyLine": "718" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "718", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type EdgeOutlineWidths = {\n /**\n * top outline width property.\n *\n * @type { ?Dimension }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n top?: Dimension;\n\n /**\n * right outline width property.\n *\n * @type { ?Dimension }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n right?: Dimension;\n\n /**\n * bottom outline width property.\n *\n * @type { ?Dimension }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n bottom?: Dimension;\n\n /**\n * left outline width property.\n *\n * @type { ?Dimension }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n left?: Dimension;\n};", - "mainBuggyLine": "718" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "788", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type BorderRadiuses = {\n /**\n * top-left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * top-left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * top-left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n topLeft?: Length;\n\n /**\n * top-right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * top-right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * top-right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n topRight?: Length;\n\n /**\n * bottom-left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * bottom-left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * bottom-left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n bottomLeft?: Length;\n\n /**\n * bottom-right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * bottom-right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * bottom-right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n bottomRight?: Length;\n};", - "mainBuggyLine": "788" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "788", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type BorderRadiuses = {\n /**\n * top-left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * top-left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * top-left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n topLeft?: Length;\n\n /**\n * top-right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * top-right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * top-right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n topRight?: Length;\n\n /**\n * bottom-left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * bottom-left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * bottom-left property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n bottomLeft?: Length;\n\n /**\n * bottom-right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * bottom-right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * bottom-right property.\n *\n * @type { ?Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n bottomRight?: Length;\n};", - "mainBuggyLine": "788" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "978", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type OutlineRadiuses = {\n /**\n * top-left property.\n *\n * @type { ?Dimension }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n topLeft?: Dimension;\n\n /**\n * top-right property.\n *\n * @type { ?Dimension }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n topRight?: Dimension;\n\n /**\n * bottom-left property.\n *\n * @type { ?Dimension }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n bottomLeft?: Dimension;\n\n /**\n * bottom-right property.\n *\n * @type { ?Dimension }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n bottomRight?: Dimension;\n};", - "mainBuggyLine": "978" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "978", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type OutlineRadiuses = {\n /**\n * top-left property.\n *\n * @type { ?Dimension }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n topLeft?: Dimension;\n\n /**\n * top-right property.\n *\n * @type { ?Dimension }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n topRight?: Dimension;\n\n /**\n * bottom-left property.\n *\n * @type { ?Dimension }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n bottomLeft?: Dimension;\n\n /**\n * bottom-right property.\n *\n * @type { ?Dimension }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n bottomRight?: Dimension;\n};", - "mainBuggyLine": "978" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "1048", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type EdgeColors = {\n /**\n * top property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * top property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * top property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n top?: ResourceColor;\n\n /**\n * right property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * right property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * right property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n right?: ResourceColor;\n\n /**\n * bottom property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * bottom property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * bottom property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n bottom?: ResourceColor;\n\n /**\n * left property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * left property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * left property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n left?: ResourceColor;\n};", - "mainBuggyLine": "1048" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "1048", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type EdgeColors = {\n /**\n * top property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * top property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * top property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n top?: ResourceColor;\n\n /**\n * right property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * right property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * right property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n right?: ResourceColor;\n\n /**\n * bottom property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * bottom property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * bottom property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n bottom?: ResourceColor;\n\n /**\n * left property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * left property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * left property.\n *\n * @type { ?ResourceColor }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n left?: ResourceColor;\n};", - "mainBuggyLine": "1048" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "1261", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type EdgeStyles = {\n /**\n * top property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * top property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * top property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n top?: BorderStyle;\n\n /**\n * right property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * right property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * right property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n right?: BorderStyle;\n\n /**\n * bottom property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * bottom property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * bottom property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n bottom?: BorderStyle;\n\n /**\n * left property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * left property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * left property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n left?: BorderStyle;\n};", - "mainBuggyLine": "1261" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "1261", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type EdgeStyles = {\n /**\n * top property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * top property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * top property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n top?: BorderStyle;\n\n /**\n * right property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * right property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * right property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n right?: BorderStyle;\n\n /**\n * bottom property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * bottom property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * bottom property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n bottom?: BorderStyle;\n\n /**\n * left property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * left property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * left property.\n *\n * @type { ?BorderStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n left?: BorderStyle;\n};", - "mainBuggyLine": "1261" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "1396", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type EdgeOutlineStyles = {\n /**\n * top property.\n *\n * @type { ?OutlineStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n top?: OutlineStyle;\n\n /**\n * right property.\n *\n * @type { ?OutlineStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n right?: OutlineStyle;\n\n /**\n * bottom property.\n *\n * @type { ?OutlineStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n bottom?: OutlineStyle;\n\n /**\n * left property.\n *\n * @type { ?OutlineStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n left?: OutlineStyle;\n};", - "mainBuggyLine": "1396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "1396", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type EdgeOutlineStyles = {\n /**\n * top property.\n *\n * @type { ?OutlineStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n top?: OutlineStyle;\n\n /**\n * right property.\n *\n * @type { ?OutlineStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n right?: OutlineStyle;\n\n /**\n * bottom property.\n *\n * @type { ?OutlineStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n bottom?: OutlineStyle;\n\n /**\n * left property.\n *\n * @type { ?OutlineStyle }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 11\n * @form\n */\n left?: OutlineStyle;\n};", - "mainBuggyLine": "1396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "1463", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type Offset = {\n /**\n * dx property.\n *\n * @type { Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 7\n */\n /**\n * dx property.\n *\n * @type { Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n */\n /**\n * dx property.\n *\n * @type { Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n */\n dx: Length;\n\n /**\n * dy property.\n *\n * @type { Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 7\n */\n /**\n * dy property.\n *\n * @type { Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n */\n /**\n * dy property.\n *\n * @type { Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n */\n dy: Length;\n};", - "mainBuggyLine": "1463" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "1547", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type ResourceColor = Color | number | string | Resource;", - "mainBuggyLine": "1547" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "1547", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type ResourceColor = Color | number | string | Resource;", - "mainBuggyLine": "1547" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "1573", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "declare type LengthConstrain = {\n /**\n * minimum length.\n *\n * @type { Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * minimum length.\n *\n * @type { Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * minimum length.\n *\n * @type { Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n minLength: Length;\n\n /**\n * maximum length.\n *\n * @type { Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * maximum length.\n *\n * @type { Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * maximum length.\n *\n * @type { Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n maxLength: Length;\n};", - "mainBuggyLine": "1573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "1573", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type LengthConstrain = {\n /**\n * minimum length.\n *\n * @type { Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * minimum length.\n *\n * @type { Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * minimum length.\n *\n * @type { Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n minLength: Length;\n\n /**\n * maximum length.\n *\n * @type { Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @since 9\n * @form\n */\n /**\n * maximum length.\n *\n * @type { Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @since 10\n * @form\n */\n /**\n * maximum length.\n *\n * @type { Length }\n * @syscap SystemCapability.ArkUI.ArkUI.Full\n * @crossplatform\n * @atomicservice\n * @since 11\n * @form\n */\n maxLength: Length;\n};", - "mainBuggyLine": "1573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "1641", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type VoidCallback = () => void;", - "mainBuggyLine": "1641" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "1838", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface Area", - "mainBuggyLine": "1838" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "1873", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "width: Length;", - "mainBuggyLine": "1873" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "1909", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "height: Length;", - "mainBuggyLine": "1909" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "1945", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "position: Position;", - "mainBuggyLine": "1945" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "1981", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "globalPosition: Position;", - "mainBuggyLine": "1981" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2018", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface Position", - "mainBuggyLine": "2018" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2053", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "x?: Length;", - "mainBuggyLine": "2053" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2089", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "y?: Length;", - "mainBuggyLine": "2089" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2132", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface Edges", - "mainBuggyLine": "2132" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2143", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "top?: Dimension;", - "mainBuggyLine": "2143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2155", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "left?: Dimension;", - "mainBuggyLine": "2155" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2167", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "bottom?: Dimension;", - "mainBuggyLine": "2167" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2179", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "right?: Dimension;", - "mainBuggyLine": "2179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2241", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface Bias", - "mainBuggyLine": "2241" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2263", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "horizontal?: number;", - "mainBuggyLine": "2263" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2286", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "vertical?: number;", - "mainBuggyLine": "2286" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2323", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface ConstraintSizeOptions", - "mainBuggyLine": "2323" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2358", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "minWidth?: Length;", - "mainBuggyLine": "2358" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2394", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "maxWidth?: Length;", - "mainBuggyLine": "2394" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2430", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "minHeight?: Length;", - "mainBuggyLine": "2430" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2466", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "maxHeight?: Length;", - "mainBuggyLine": "2466" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2503", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface SizeOptions", - "mainBuggyLine": "2503" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2538", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "width?: Length;", - "mainBuggyLine": "2538" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2574", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "height?: Length;", - "mainBuggyLine": "2574" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2611", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface BorderOptions", - "mainBuggyLine": "2611" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2784", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "style?: EdgeStyles | BorderStyle;", - "mainBuggyLine": "2784" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2794", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dashGap?: EdgeWidths | LengthMetrics | LocalizedEdgeWidths;", - "mainBuggyLine": "2794" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2804", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dashWidth?: EdgeWidths | LengthMetrics | LocalizedEdgeWidths;", - "mainBuggyLine": "2804" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2826", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare interface OutlineOptions", - "mainBuggyLine": "2826" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2846", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "width?: EdgeOutlineWidths | Dimension;", - "mainBuggyLine": "2846" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2888", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "radius?: OutlineRadiuses | Dimension;", - "mainBuggyLine": "2888" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "2909", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "style?: EdgeOutlineStyles | OutlineStyle;", - "mainBuggyLine": "2909" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "3012", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class ColorFilter", - "mainBuggyLine": "3012" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts", - "codeContextStaerLine": "3040", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor(value: number[]);", - "mainBuggyLine": "3040" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/video.d.ts", - "codeContextStaerLine": "634", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "reset(): void;", - "mainBuggyLine": "634" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/video.d.ts", - "codeContextStaerLine": "1217", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onStop(event: Callback): VideoAttribute;", - "mainBuggyLine": "1217" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/video.d.ts", - "codeContextStaerLine": "1227", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableAnalyzer(enable: boolean): VideoAttribute;", - "mainBuggyLine": "1227" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/video.d.ts", - "codeContextStaerLine": "1237", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "analyzerConfig(config: ImageAnalyzerConfig): VideoAttribute;", - "mainBuggyLine": "1237" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/water_flow.d.ts", - "codeContextStaerLine": "31", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type GetItemMainSizeByIndex = (index: number) => number;", - "mainBuggyLine": "31" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/water_flow.d.ts", - "codeContextStaerLine": "31", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_06", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [returns] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type GetItemMainSizeByIndex = (index: number) => number;", - "mainBuggyLine": "31" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/water_flow.d.ts", - "codeContextStaerLine": "31", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [1] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "declare type GetItemMainSizeByIndex = (index: number) => number;", - "mainBuggyLine": "31" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/water_flow.d.ts", - "codeContextStaerLine": "31", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type GetItemMainSizeByIndex = (index: number) => number;", - "mainBuggyLine": "31" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/water_flow.d.ts", - "codeContextStaerLine": "294", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sections?: WaterFlowSections;", - "mainBuggyLine": "294" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/water_flow.d.ts", - "codeContextStaerLine": "304", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "layoutMode?: WaterFlowLayoutMode;", - "mainBuggyLine": "304" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "42", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type WebviewController = import('../api/@ohos.web.webview').default.WebviewController;", - "mainBuggyLine": "42" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "51", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type OnNavigationEntryCommittedCallback = (loadCommittedDetails: LoadCommittedDetails) => void;", - "mainBuggyLine": "51" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "61", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type OnSslErrorEventCallback = (sslErrorEvent: SslErrorEvent) => void;", - "mainBuggyLine": "61" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "71", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type OnLargestContentfulPaintCallback = (largestContentfulPaint: LargestContentfulPaint) => void;", - "mainBuggyLine": "71" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "81", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type OnFirstMeaningfulPaintCallback = (firstMeaningfulPaint: FirstMeaningfulPaint) => void;", - "mainBuggyLine": "81" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "92", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type OnOverrideUrlLoadingCallback = (webResourceRequest: WebResourceRequest) => boolean;", - "mainBuggyLine": "92" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "101", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type OnIntelligentTrackingPreventionCallback = (details: IntelligentTrackingPreventionDetails) => void;", - "mainBuggyLine": "101" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "141", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "type OnRenderProcessNotRespondingCallback = (data : RenderProcessNotRespondingData) => void;", - "mainBuggyLine": "141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "141", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [1] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "type OnRenderProcessNotRespondingCallback = (data : RenderProcessNotRespondingData) => void;", - "mainBuggyLine": "141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "141", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type OnRenderProcessNotRespondingCallback = (data : RenderProcessNotRespondingData) => void;", - "mainBuggyLine": "141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "150", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type OnRenderProcessRespondingCallback = () => void;", - "mainBuggyLine": "150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "161", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "type OnViewportFitChangedCallback = (viewportFit: ViewportFit) => void;", - "mainBuggyLine": "161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "161", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [1] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "type OnViewportFitChangedCallback = (viewportFit: ViewportFit) => void;", - "mainBuggyLine": "161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "161", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type OnViewportFitChangedCallback = (viewportFit: ViewportFit) => void;", - "mainBuggyLine": "161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "171", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type OnAdsBlockedCallback = (details: AdsBlockedDetails) => void;", - "mainBuggyLine": "171" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "265", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "insertText(text: string): void;", - "mainBuggyLine": "265" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "273", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deleteForward(length: number): void;", - "mainBuggyLine": "273" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "281", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deleteBackward(length: number): void;", - "mainBuggyLine": "281" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "289", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sendFunctionKey(key: number): void;", - "mainBuggyLine": "289" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "296", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "close(): void;", - "mainBuggyLine": "296" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "338", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "type WebKeyboardCallback = (keyboardCallbackInfo: WebKeyboardCallbackInfo) => WebKeyboardOptions;", - "mainBuggyLine": "338" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "338", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_06", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [returns] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "type WebKeyboardCallback = (keyboardCallbackInfo: WebKeyboardCallbackInfo) => WebKeyboardOptions;", - "mainBuggyLine": "338" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "338", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [1] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "type WebKeyboardCallback = (keyboardCallbackInfo: WebKeyboardCallbackInfo) => WebKeyboardOptions;", - "mainBuggyLine": "338" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "338", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type WebKeyboardCallback = (keyboardCallbackInfo: WebKeyboardCallbackInfo) => WebKeyboardOptions;", - "mainBuggyLine": "338" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "507", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type OnSafeBrowsingCheckResultCallback = (threatType: ThreatType) => void;", - "mainBuggyLine": "507" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "1050", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "handler: FullScreenExitHandler;", - "mainBuggyLine": "1050" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "1058", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "videoWidth?: number;", - "mainBuggyLine": "1058" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "1066", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "videoHeight?: number;", - "mainBuggyLine": "1066" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "1076", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type OnFullScreenEnterCallback = (event: FullScreenEnterEvent) => void;", - "mainBuggyLine": "1076" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "1177", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type OnContextMenuHideCallback = () => void;", - "mainBuggyLine": "1177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "3067", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(message: string, sourceId: string, lineNumber: number, messageLevel: MessageLevel);", - "mainBuggyLine": "3067" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "3885", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setCookie();", - "mainBuggyLine": "3885" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "3895", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "saveCookie();", - "mainBuggyLine": "3895" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "4272", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sharedRenderProcessToken? : string;", - "mainBuggyLine": "4272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "5974", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "asyncMethodList?: Array;", - "mainBuggyLine": "5974" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "6222", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "password(password: boolean): WebAttribute;", - "mainBuggyLine": "6222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "6309", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "tableData(tableData: boolean): WebAttribute;", - "mainBuggyLine": "6309" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "6320", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "wideViewModeAccess(wideViewModeAccess: boolean): WebAttribute;", - "mainBuggyLine": "6320" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "6360", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "textZoomAtio(textZoomAtio: number): WebAttribute;", - "mainBuggyLine": "6360" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "6429", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "userAgent(userAgent: string): WebAttribute;", - "mainBuggyLine": "6429" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "6934", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onUrlLoadIntercept(callback: (event?: { data: string | WebResourceRequest }) => boolean): WebAttribute;", - "mainBuggyLine": "6934" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "6946", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onSslErrorReceive(callback: (event?: { handler: Function, error: object }) => void): WebAttribute;", - "mainBuggyLine": "6946" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "7016", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onRenderExited(callback: (event?: { detail: object }) => boolean): WebAttribute;", - "mainBuggyLine": "7016" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "7028", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onFileSelectorShow(callback: (event?: { callback: Function, fileSelector: object }) => void): WebAttribute;", - "mainBuggyLine": "7028" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "7726", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "defaultTextEncodingFormat(textEncodingFormat: string): WebAttribute;", - "mainBuggyLine": "7726" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "8288", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onRenderProcessNotResponding(callback: OnRenderProcessNotRespondingCallback): WebAttribute;", - "mainBuggyLine": "8288" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "8298", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onRenderProcessResponding(callback: OnRenderProcessRespondingCallback): WebAttribute;", - "mainBuggyLine": "8298" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "8308", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "selectionMenuOptions(expandedMenuOptions: Array): WebAttribute;", - "mainBuggyLine": "8308" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "8404", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "handler: SslErrorHandler,", - "mainBuggyLine": "8404" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "8412", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "error: SslError", - "mainBuggyLine": "8412" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "8420", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "url: string;", - "mainBuggyLine": "8420" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "8428", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "originalUrl: string;", - "mainBuggyLine": "8428" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "8436", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "referrer: string;", - "mainBuggyLine": "8436" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "8444", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isFatalError: boolean;", - "mainBuggyLine": "8444" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts", - "codeContextStaerLine": "8452", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isMainFrame: boolean;", - "mainBuggyLine": "8452" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/window_scene.d.ts", - "codeContextStaerLine": "50", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_01", - "description": "API check error of [wrong value]: The [extends] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " declare class WindowSceneAttribute", - "mainBuggyLine": "50" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/with_theme.d.ts", - "codeContextStaerLine": "59", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type WithThemeInterface = (options: WithThemeOptions) => WithThemeAttribute;", - "mainBuggyLine": "59" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/with_theme.d.ts", - "codeContextStaerLine": "59", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_06", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [returns] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type WithThemeInterface = (options: WithThemeOptions) => WithThemeAttribute;", - "mainBuggyLine": "59" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/with_theme.d.ts", - "codeContextStaerLine": "59", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [1] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "declare type WithThemeInterface = (options: WithThemeOptions) => WithThemeAttribute;", - "mainBuggyLine": "59" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/with_theme.d.ts", - "codeContextStaerLine": "59", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type WithThemeInterface = (options: WithThemeOptions) => WithThemeAttribute;", - "mainBuggyLine": "59" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/xcomponent.d.ts", - "codeContextStaerLine": "174", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setXComponentSurfaceSize(value: {\n surfaceWidth: number;\n surfaceHeight: number;\n }): void;", - "mainBuggyLine": "174" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/global.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " export declare class console", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/global.d.ts", - "codeContextStaerLine": "94", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "static debug(message: string, ...arguments: any[]): void;", - "mainBuggyLine": "94" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/global.d.ts", - "codeContextStaerLine": "134", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "static log(message: string, ...arguments: any[]): void;", - "mainBuggyLine": "134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/global.d.ts", - "codeContextStaerLine": "174", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "static info(message: string, ...arguments: any[]): void;", - "mainBuggyLine": "174" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/global.d.ts", - "codeContextStaerLine": "214", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "static warn(message: string, ...arguments: any[]): void;", - "mainBuggyLine": "214" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/global.d.ts", - "codeContextStaerLine": "254", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "static error(message: string, ...arguments: any[]): void;", - "mainBuggyLine": "254" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/global.d.ts", - "codeContextStaerLine": "267", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static assert(value?: Object, ...arguments: Object[]): void;", - "mainBuggyLine": "267" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/global.d.ts", - "codeContextStaerLine": "280", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static count(label?: string): void;", - "mainBuggyLine": "280" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/global.d.ts", - "codeContextStaerLine": "292", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static countReset(label?: string): void;", - "mainBuggyLine": "292" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/global.d.ts", - "codeContextStaerLine": "303", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static dir(dir?: Object): void;", - "mainBuggyLine": "303" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/global.d.ts", - "codeContextStaerLine": "315", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static dirxml(...arguments: Object[]): void;", - "mainBuggyLine": "315" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/global.d.ts", - "codeContextStaerLine": "326", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static group(...arguments: Object[]): void;", - "mainBuggyLine": "326" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/global.d.ts", - "codeContextStaerLine": "337", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static groupCollapsed(...arguments: Object[]): void;", - "mainBuggyLine": "337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/global.d.ts", - "codeContextStaerLine": "347", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static groupEnd(): void;", - "mainBuggyLine": "347" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/global.d.ts", - "codeContextStaerLine": "358", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static table(tableData?: Object): void;", - "mainBuggyLine": "358" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/global.d.ts", - "codeContextStaerLine": "370", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static time(label?: string): void;", - "mainBuggyLine": "370" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/global.d.ts", - "codeContextStaerLine": "382", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static timeEnd(label?: string): void;", - "mainBuggyLine": "382" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/global.d.ts", - "codeContextStaerLine": "395", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static timeLog(label?: string, ...arguments: Object[]): void;", - "mainBuggyLine": "395" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/global.d.ts", - "codeContextStaerLine": "406", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static trace(...arguments: Object[]): void;", - "mainBuggyLine": "406" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/global.d.ts", - "codeContextStaerLine": "416", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static traceHybridStack(): void;", - "mainBuggyLine": "416" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.ability.d.ts", - "codeContextStaerLine": "52", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type DataAbilityHelper = _DataAbilityHelper;", - "mainBuggyLine": "52" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.ability.d.ts", - "codeContextStaerLine": "67", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type PacMap = _PacMap;", - "mainBuggyLine": "67" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.ability.d.ts", - "codeContextStaerLine": "77", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type DataAbilityOperation = _DataAbilityOperation;", - "mainBuggyLine": "77" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.ability.d.ts", - "codeContextStaerLine": "88", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type DataAbilityResult = _DataAbilityResult;", - "mainBuggyLine": "88" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.ability.d.ts", - "codeContextStaerLine": "100", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type AbilityResult = _AbilityResult;", - "mainBuggyLine": "100" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.ability.d.ts", - "codeContextStaerLine": "110", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ConnectOptions = _ConnectOptions;", - "mainBuggyLine": "110" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.ability.d.ts", - "codeContextStaerLine": "120", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type StartAbilityParameter = _StartAbilityParameter;", - "mainBuggyLine": "120" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.featureAbility.d.ts", - "codeContextStaerLine": "441", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type Context = _Context;", - "mainBuggyLine": "441" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.featureAbility.d.ts", - "codeContextStaerLine": "450", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type AppVersionInfo = _AppVersionInfo;", - "mainBuggyLine": "450" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.featureAbility.d.ts", - "codeContextStaerLine": "459", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ProcessInfo = _ProcessInfo;", - "mainBuggyLine": "459" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.screenLockFileManager.d.ts", - "codeContextStaerLine": "28", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_01", - "description": "API check error of [wrong value]: The [syscap] tag value is incorrect. Please check if the syscap field is configured.", - "language": "ts", - "mainBuggyCode": " declare namespace screenLockFileManager", - "mainBuggyLine": "28" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.screenLockFileManager.d.ts", - "codeContextStaerLine": "36", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_01", - "description": "API check error of [wrong value]: The [syscap] tag value is incorrect. Please check if the syscap field is configured.", - "language": "ts", - "mainBuggyCode": " export enum DataType", - "mainBuggyLine": "36" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.screenLockFileManager.d.ts", - "codeContextStaerLine": "43", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_01", - "description": "API check error of [wrong value]: The [syscap] tag value is incorrect. Please check if the syscap field is configured.", - "language": "ts", - "mainBuggyCode": "MEDIA_DATA = 0x00000001", - "mainBuggyLine": "43" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.screenLockFileManager.d.ts", - "codeContextStaerLine": "51", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_01", - "description": "API check error of [wrong value]: The [syscap] tag value is incorrect. Please check if the syscap field is configured.", - "language": "ts", - "mainBuggyCode": "ALL_DATA = 0xffffffff", - "mainBuggyLine": "51" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.screenLockFileManager.d.ts", - "codeContextStaerLine": "61", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_01", - "description": "API check error of [wrong value]: The [syscap] tag value is incorrect. Please check if the syscap field is configured.", - "language": "ts", - "mainBuggyCode": " export enum AccessStatus", - "mainBuggyLine": "61" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.screenLockFileManager.d.ts", - "codeContextStaerLine": "68", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_01", - "description": "API check error of [wrong value]: The [syscap] tag value is incorrect. Please check if the syscap field is configured.", - "language": "ts", - "mainBuggyCode": "ACCESS_DENIED = -1", - "mainBuggyLine": "68" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.screenLockFileManager.d.ts", - "codeContextStaerLine": "76", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_01", - "description": "API check error of [wrong value]: The [syscap] tag value is incorrect. Please check if the syscap field is configured.", - "language": "ts", - "mainBuggyCode": "ACCESS_GRANTED = 0", - "mainBuggyLine": "76" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.screenLockFileManager.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_01", - "description": "API check error of [wrong value]: The [syscap] tag value is incorrect. Please check if the syscap field is configured.", - "language": "ts", - "mainBuggyCode": " export enum ReleaseStatus", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.screenLockFileManager.d.ts", - "codeContextStaerLine": "93", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_01", - "description": "API check error of [wrong value]: The [syscap] tag value is incorrect. Please check if the syscap field is configured.", - "language": "ts", - "mainBuggyCode": "RELEASE_DENIED = -1", - "mainBuggyLine": "93" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.screenLockFileManager.d.ts", - "codeContextStaerLine": "101", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_01", - "description": "API check error of [wrong value]: The [syscap] tag value is incorrect. Please check if the syscap field is configured.", - "language": "ts", - "mainBuggyCode": "RELEASE_GRANTED = 0", - "mainBuggyLine": "101" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.screenLockFileManager.d.ts", - "codeContextStaerLine": "115", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_01", - "description": "API check error of [wrong value]: The [syscap] tag value is incorrect. Please check if the syscap field is configured.", - "language": "ts", - "mainBuggyCode": "function acquireAccess(): AccessStatus;", - "mainBuggyLine": "115" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.screenLockFileManager.d.ts", - "codeContextStaerLine": "135", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function acquireAccess(dataType: DataType): AccessStatus;", - "mainBuggyLine": "135" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.screenLockFileManager.d.ts", - "codeContextStaerLine": "135", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_01", - "description": "API check error of [wrong value]: The [syscap] tag value is incorrect. Please check if the syscap field is configured.", - "language": "ts", - "mainBuggyCode": "function acquireAccess(dataType: DataType): AccessStatus;", - "mainBuggyLine": "135" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.screenLockFileManager.d.ts", - "codeContextStaerLine": "148", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_01", - "description": "API check error of [wrong value]: The [syscap] tag value is incorrect. Please check if the syscap field is configured.", - "language": "ts", - "mainBuggyCode": "function releaseAccess(): ReleaseStatus;", - "mainBuggyLine": "148" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.screenLockFileManager.d.ts", - "codeContextStaerLine": "168", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function releaseAccess(dataType: DataType): ReleaseStatus;", - "mainBuggyLine": "168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.screenLockFileManager.d.ts", - "codeContextStaerLine": "168", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_01", - "description": "API check error of [wrong value]: The [syscap] tag value is incorrect. Please check if the syscap field is configured.", - "language": "ts", - "mainBuggyCode": "function releaseAccess(dataType: DataType): ReleaseStatus;", - "mainBuggyLine": "168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "96", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "verifyAccessToken(tokenID: number, permissionName: Permissions): Promise;", - "mainBuggyLine": "96" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "109", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "verifyAccessToken(tokenID: number, permissionName: string): Promise;", - "mainBuggyLine": "109" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "122", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "verifyAccessTokenSync(tokenID: number, permissionName: Permissions): GrantStatus;", - "mainBuggyLine": "122" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "306", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "grantUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlags: number): Promise;", - "mainBuggyLine": "306" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "329", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "grantUserGrantedPermission(\n tokenID: number,\n permissionName: Permissions,\n permissionFlags: number,\n callback: AsyncCallback\n ): void;", - "mainBuggyLine": "329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "357", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "revokeUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlags: number): Promise;", - "mainBuggyLine": "357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "380", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "revokeUserGrantedPermission(\n tokenID: number,\n permissionName: Permissions,\n permissionFlags: number,\n callback: AsyncCallback\n ): void;", - "mainBuggyLine": "380" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "406", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPermissionFlags(tokenID: number, permissionName: Permissions): Promise;", - "mainBuggyLine": "406" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "425", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setPermissionRequestToggleStatus(permissionName: Permissions, status: PermissionRequestToggleStatus): Promise;", - "mainBuggyLine": "425" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "443", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPermissionRequestToggleStatus(permissionName: Permissions): Promise;", - "mainBuggyLine": "443" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "454", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getVersion(): Promise;", - "mainBuggyLine": "454" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "473", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPermissionsStatus(tokenID: number, permissionList: Array): Promise>;", - "mainBuggyLine": "473" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "499", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(\n type: 'permissionStateChange',\n tokenIDList: Array,\n permissionList: Array,\n callback: Callback\n ): void;", - "mainBuggyLine": "499" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "527", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(\n type: 'permissionStateChange',\n tokenIDList: Array,\n permissionList: Array,\n callback?: Callback\n ): void;", - "mainBuggyLine": "527" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "614", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum PermissionStateChangeType", - "mainBuggyLine": "614" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "622", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PERMISSION_REVOKED_OPER = 0", - "mainBuggyLine": "622" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "630", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PERMISSION_GRANTED_OPER = 1", - "mainBuggyLine": "630" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "641", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum PermissionRequestToggleStatus", - "mainBuggyLine": "641" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "649", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CLOSED = 0", - "mainBuggyLine": "649" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "657", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OPEN = 1", - "mainBuggyLine": "657" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "669", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface PermissionStateChangeInfo", - "mainBuggyLine": "669" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "678", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "change: PermissionStateChangeType;", - "mainBuggyLine": "678" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "688", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "tokenID: number;", - "mainBuggyLine": "688" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "698", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "permissionName: Permissions;", - "mainBuggyLine": "698" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "709", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum PermissionStatus", - "mainBuggyLine": "709" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "717", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DENIED = -1", - "mainBuggyLine": "717" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "725", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GRANTED = 0", - "mainBuggyLine": "725" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "733", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NOT_DETERMINED = 1", - "mainBuggyLine": "733" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "741", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INVALID = 2", - "mainBuggyLine": "741" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "749", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RESTRICTED = 3", - "mainBuggyLine": "749" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "772", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type PermissionRequestResult = _PermissionRequestResult;", - "mainBuggyLine": "772" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts", - "codeContextStaerLine": "790", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type Context = _Context;", - "mainBuggyLine": "790" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.config.d.ts", - "codeContextStaerLine": "361", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": " interface Config", - "mainBuggyLine": "361" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.config.d.ts", - "codeContextStaerLine": "411", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "get(): Promise;", - "mainBuggyLine": "411" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.config.d.ts", - "codeContextStaerLine": "424", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "get(callback: AsyncCallback): void;", - "mainBuggyLine": "424" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.config.d.ts", - "codeContextStaerLine": "464", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type DaltonizationColorFilter = 'Normal' | 'Protanomaly' | 'Deuteranomaly' | 'Tritanomaly';", - "mainBuggyLine": "464" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.config.d.ts", - "codeContextStaerLine": "473", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type ClickResponseTime = 'Short' | 'Medium' | 'Long';", - "mainBuggyLine": "473" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.config.d.ts", - "codeContextStaerLine": "482", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type RepeatClickInterval = 'Shortest' | 'Short' | 'Medium' | 'Long' | 'Longest';", - "mainBuggyLine": "482" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.accessibility.config.d.ts", - "codeContextStaerLine": "317", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_installedAccessibilityListChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'installedAccessibilityListChange', callback: Callback): void;", - "mainBuggyLine": "317" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.accessibility.config.d.ts", - "codeContextStaerLine": "351", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_installedAccessibilityListChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'installedAccessibilityListChange', callback?: Callback): void;", - "mainBuggyLine": "351" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "54", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type AbilityType = 'audible' | 'generic' | 'haptic' | 'spoken' | 'visual' | 'all';", - "mainBuggyLine": "54" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "54", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type AbilityType = 'audible' | 'generic' | 'haptic' | 'spoken' | 'visual' | 'all';", - "mainBuggyLine": "54" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "75", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type Action = 'accessibilityFocus' | 'clearAccessibilityFocus' | 'focus' | 'clearFocus' | 'clearSelection' |\r\n 'click' | 'longClick' | 'cut' | 'copy' | 'paste' | 'select' | 'setText' | 'delete' |\r\n 'scrollForward' | 'scrollBackward' | 'setSelection' | 'setCursorPosition' | 'home' |\r\n 'back' | 'recentTask' | 'notificationCenter' | 'controlCenter' | 'common';", - "mainBuggyLine": "75" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "75", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type Action = 'accessibilityFocus' | 'clearAccessibilityFocus' | 'focus' | 'clearFocus' | 'clearSelection' |\r\n 'click' | 'longClick' | 'cut' | 'copy' | 'paste' | 'select' | 'setText' | 'delete' |\r\n 'scrollForward' | 'scrollBackward' | 'setSelection' | 'setCursorPosition' | 'home' |\r\n 'back' | 'recentTask' | 'notificationCenter' | 'controlCenter' | 'common';", - "mainBuggyLine": "75" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "101", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type EventType = 'accessibilityFocus' | 'accessibilityFocusClear' |\r\n 'click' | 'longClick' | 'focus' | 'select' | 'hoverEnter' | 'hoverExit' |\r\n 'textUpdate' | 'textSelectionUpdate' | 'scroll' | 'requestFocusForAccessibility' |\r\n 'announceForAccessibility';", - "mainBuggyLine": "101" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "101", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type EventType = 'accessibilityFocus' | 'accessibilityFocusClear' |\r\n 'click' | 'longClick' | 'focus' | 'select' | 'hoverEnter' | 'hoverExit' |\r\n 'textUpdate' | 'textSelectionUpdate' | 'scroll' | 'requestFocusForAccessibility' |\r\n 'announceForAccessibility';", - "mainBuggyLine": "101" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "113", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type WindowUpdateType = 'add' | 'remove' | 'bounds' | 'active' | 'focus';", - "mainBuggyLine": "113" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "113", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type WindowUpdateType = 'add' | 'remove' | 'bounds' | 'active' | 'focus';", - "mainBuggyLine": "113" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "121", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type AbilityState = 'enable' | 'disable' | 'install';", - "mainBuggyLine": "121" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "121", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type AbilityState = 'enable' | 'disable' | 'install';", - "mainBuggyLine": "121" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "135", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type Capability = 'retrieve' | 'touchGuide' | 'keyEventObserver' | 'zoom' | 'gesture';", - "mainBuggyLine": "135" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "135", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type Capability = 'retrieve' | 'touchGuide' | 'keyEventObserver' | 'zoom' | 'gesture';", - "mainBuggyLine": "135" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "143", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type TextMoveUnit = 'char' | 'word' | 'line' | 'page' | 'paragraph';", - "mainBuggyLine": "143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "143", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type TextMoveUnit = 'char' | 'word' | 'line' | 'page' | 'paragraph';", - "mainBuggyLine": "143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "154", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isOpenAccessibility(callback: AsyncCallback): void;", - "mainBuggyLine": "154" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "165", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isOpenAccessibility(): Promise;", - "mainBuggyLine": "165" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "193", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isOpenTouchGuide(callback: AsyncCallback): void;", - "mainBuggyLine": "193" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "204", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isOpenTouchGuide(): Promise;", - "mainBuggyLine": "204" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "234", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAbilityLists(\r\n abilityType: AbilityType,\r\n stateType: AbilityState,\r\n callback: AsyncCallback>\r\n ): void;", - "mainBuggyLine": "234" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "251", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAbilityLists(abilityType: AbilityType, stateType: AbilityState): Promise>;", - "mainBuggyLine": "251" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "266", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAccessibilityExtensionList(\r\n abilityType: AbilityType,\r\n stateType: AbilityState\r\n ): Promise>;", - "mainBuggyLine": "266" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "284", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAccessibilityExtensionList(\r\n abilityType: AbilityType,\r\n stateType: AbilityState,\r\n callback: AsyncCallback>\r\n ): void;", - "mainBuggyLine": "284" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "299", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAccessibilityExtensionListSync(\r\n abilityType: AbilityType,\r\n stateType: AbilityState\r\n ): Array;", - "mainBuggyLine": "299" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "314", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function sendEvent(event: EventInfo, callback: AsyncCallback): void;", - "mainBuggyLine": "314" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "326", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function sendEvent(event: EventInfo): Promise;", - "mainBuggyLine": "326" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "340", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function sendAccessibilityEvent(event: EventInfo, callback: AsyncCallback): void;", - "mainBuggyLine": "340" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "354", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function sendAccessibilityEvent(event: EventInfo): Promise;", - "mainBuggyLine": "354" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "368", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'accessibilityStateChange', callback: Callback): void;", - "mainBuggyLine": "368" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "382", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'touchGuideStateChange', callback: Callback): void;", - "mainBuggyLine": "382" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "396", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'accessibilityStateChange', callback?: Callback): void;", - "mainBuggyLine": "396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "410", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'touchGuideStateChange', callback?: Callback): void;", - "mainBuggyLine": "410" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "419", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getCaptionsManager(): CaptionsManager;", - "mainBuggyLine": "419" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "428", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface CaptionsManager", - "mainBuggyLine": "428" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "435", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enabled: boolean;", - "mainBuggyLine": "435" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "435", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "enabled: boolean;", - "mainBuggyLine": "435" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "442", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "style: CaptionsStyle;", - "mainBuggyLine": "442" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "442", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "style: CaptionsStyle;", - "mainBuggyLine": "442" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "456", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'enableChange', callback: Callback): void;", - "mainBuggyLine": "456" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "470", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'styleChange', callback: Callback): void;", - "mainBuggyLine": "470" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "484", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'enableChange', callback?: Callback): void;", - "mainBuggyLine": "484" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "498", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'styleChange', callback?: Callback): void;", - "mainBuggyLine": "498" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "507", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type CaptionsFontEdgeType = 'none' | 'raised' | 'depressed' | 'uniform' | 'dropShadow';", - "mainBuggyLine": "507" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "507", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type CaptionsFontEdgeType = 'none' | 'raised' | 'depressed' | 'uniform' | 'dropShadow';", - "mainBuggyLine": "507" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "514", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type CaptionsFontFamily = 'default' | 'monospacedSerif' | 'serif' |\r\n 'monospacedSansSerif' | 'sansSerif' | 'casual' | 'cursive' | 'smallCapitals';", - "mainBuggyLine": "514" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "514", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type CaptionsFontFamily = 'default' | 'monospacedSerif' | 'serif' |\r\n 'monospacedSansSerif' | 'sansSerif' | 'casual' | 'cursive' | 'smallCapitals';", - "mainBuggyLine": "514" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "523", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface CaptionsStyle", - "mainBuggyLine": "523" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "530", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fontFamily: CaptionsFontFamily;", - "mainBuggyLine": "530" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "530", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fontFamily: CaptionsFontFamily;", - "mainBuggyLine": "530" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "537", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fontScale: number;", - "mainBuggyLine": "537" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "544", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fontColor: number | string;", - "mainBuggyLine": "544" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "551", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fontEdgeType: CaptionsFontEdgeType;", - "mainBuggyLine": "551" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "558", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "backgroundColor: number | string;", - "mainBuggyLine": "558" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "565", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "windowColor: number | string;", - "mainBuggyLine": "565" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "575", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AccessibilityAbilityInfo", - "mainBuggyLine": "575" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "583", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly id: string;", - "mainBuggyLine": "583" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "592", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly name: string;", - "mainBuggyLine": "592" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "601", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly bundleName: string;", - "mainBuggyLine": "601" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "609", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly targetBundleNames: Array;", - "mainBuggyLine": "609" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "618", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly abilityTypes: Array;", - "mainBuggyLine": "618" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "627", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly capabilities: Array;", - "mainBuggyLine": "627" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "636", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly description: string;", - "mainBuggyLine": "636" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "645", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly eventTypes: Array;", - "mainBuggyLine": "645" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "654", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly needHide: boolean;", - "mainBuggyLine": "654" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "663", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly label: string;", - "mainBuggyLine": "663" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "672", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class EventInfo", - "mainBuggyLine": "672" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "680", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(jsonObject);", - "mainBuggyLine": "680" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "690", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(type: EventType, bundleName: string, triggerAction: Action);", - "mainBuggyLine": "690" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "697", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type: EventType;", - "mainBuggyLine": "697" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "705", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "windowUpdateType?: WindowUpdateType;", - "mainBuggyLine": "705" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "713", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bundleName: string;", - "mainBuggyLine": "713" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "721", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "componentType?: string;", - "mainBuggyLine": "721" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "729", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pageId?: number;", - "mainBuggyLine": "729" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "737", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "description?: string;", - "mainBuggyLine": "737" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "745", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "triggerAction: Action;", - "mainBuggyLine": "745" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "753", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "textMoveUnit?: TextMoveUnit;", - "mainBuggyLine": "753" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "761", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contents?: Array;", - "mainBuggyLine": "761" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "769", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "lastContent?: string;", - "mainBuggyLine": "769" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "777", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "beginIndex?: number;", - "mainBuggyLine": "777" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "785", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "currentIndex?: number;", - "mainBuggyLine": "785" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "793", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "endIndex?: number;", - "mainBuggyLine": "793" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "801", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "itemCount?: number;", - "mainBuggyLine": "801" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "809", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "elementId?: number;", - "mainBuggyLine": "809" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "817", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "textAnnouncedForAccessibility?: string;", - "mainBuggyLine": "817" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts", - "codeContextStaerLine": "825", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "customId?: string;", - "mainBuggyLine": "825" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.account.appAccount.d.ts", - "codeContextStaerLine": "2678", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onResult: (code: number, result: { [key: string]: any }) => void;", - "mainBuggyLine": "2678" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.account.appAccount.d.ts", - "codeContextStaerLine": "2687", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onRequestRedirected: (request: Want) => void;", - "mainBuggyLine": "2687" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.account.appAccount.d.ts", - "codeContextStaerLine": "2704", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onResult: (code: number, result?: AuthResult) => void;", - "mainBuggyLine": "2704" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.account.appAccount.d.ts", - "codeContextStaerLine": "2712", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onRequestRedirected: (request: Want) => void;", - "mainBuggyLine": "2712" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.account.appAccount.d.ts", - "codeContextStaerLine": "2720", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onRequestContinued?: () => void;", - "mainBuggyLine": "2720" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.account.osAccount.d.ts", - "codeContextStaerLine": "2307", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface CreateOsAccountForDomainOptions", - "mainBuggyLine": "2307" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.account.osAccount.d.ts", - "codeContextStaerLine": "2973", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface GetDomainAccountInfoPluginOptions", - "mainBuggyLine": "2973" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.account.osAccount.d.ts", - "codeContextStaerLine": "4119", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onSetData: (authSubType: AuthSubType, data: Uint8Array) => void;", - "mainBuggyLine": "4119" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.account.osAccount.d.ts", - "codeContextStaerLine": "4181", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onResult: (result: number, extraInfo: AuthResult) => void;", - "mainBuggyLine": "4181" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.account.osAccount.d.ts", - "codeContextStaerLine": "4190", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onAcquireInfo?: (module: number, acquire: number, extraInfo: Uint8Array) => void;", - "mainBuggyLine": "4190" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.account.osAccount.d.ts", - "codeContextStaerLine": "4209", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onResult: (result: number, extraInfo: RequestResult) => void;", - "mainBuggyLine": "4209" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.account.osAccount.d.ts", - "codeContextStaerLine": "4218", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onAcquireInfo?: (module: number, acquire: number, extraInfo: Uint8Array) => void;", - "mainBuggyLine": "4218" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.account.osAccount.d.ts", - "codeContextStaerLine": "1898", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_switching] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'switching', callback: Callback): void;", - "mainBuggyLine": "1898" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.account.osAccount.d.ts", - "codeContextStaerLine": "1916", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_switching] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'switching', callback?: Callback): void;", - "mainBuggyLine": "1916" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.account.osAccount.d.ts", - "codeContextStaerLine": "1934", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_switched] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'switched', callback: Callback): void;", - "mainBuggyLine": "1934" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.account.osAccount.d.ts", - "codeContextStaerLine": "1952", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_switched] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'switched', callback?: Callback): void;", - "mainBuggyLine": "1952" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.advertising.AdComponent.d.ets", - "codeContextStaerLine": "34", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare struct AdComponent", - "mainBuggyLine": "34" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.advertising.AdComponent.d.ets", - "codeContextStaerLine": "49", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "ads: advertising.Advertisement[];", - "mainBuggyLine": "49" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.advertising.AdComponent.d.ets", - "codeContextStaerLine": "64", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "displayOptions: advertising.AdDisplayOptions;", - "mainBuggyLine": "64" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.advertising.AdComponent.d.ets", - "codeContextStaerLine": "79", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "interactionListener: advertising.AdInteractionListener;", - "mainBuggyLine": "79" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.advertising.AdComponent.d.ets", - "codeContextStaerLine": "87", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "@BuilderParam adRenderer?: () => void;", - "mainBuggyLine": "87" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.advertising.AdComponent.d.ets", - "codeContextStaerLine": "87", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "@BuilderParam adRenderer?: () => void;", - "mainBuggyLine": "87" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.advertising.AutoAdComponent.d.ets", - "codeContextStaerLine": "34", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare struct AutoAdComponent", - "mainBuggyLine": "34" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.advertising.AutoAdComponent.d.ets", - "codeContextStaerLine": "49", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "adParam: advertising.AdRequestParams;", - "mainBuggyLine": "49" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.advertising.AutoAdComponent.d.ets", - "codeContextStaerLine": "64", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "adOptions: advertising.AdOptions;", - "mainBuggyLine": "64" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.advertising.AutoAdComponent.d.ets", - "codeContextStaerLine": "79", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "displayOptions: advertising.AdDisplayOptions;", - "mainBuggyLine": "79" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.advertising.AutoAdComponent.d.ets", - "codeContextStaerLine": "94", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "interactionListener: advertising.AdInteractionListener;", - "mainBuggyLine": "94" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.advertising.d.ts", - "codeContextStaerLine": "49", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type Advertisement = _Advertisement;", - "mainBuggyLine": "49" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.advertising.d.ts", - "codeContextStaerLine": "602", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAdRequestBody(adParams: AdRequestParams[], adOptions: AdOptions): Promise;", - "mainBuggyLine": "602" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.advertising.d.ts", - "codeContextStaerLine": "615", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function parseAdResponse(adResponse: string, listener: MultiSlotsAdLoadListener, context: common.UIAbilityContext): void;", - "mainBuggyLine": "615" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.animator.d.ts", - "codeContextStaerLine": "331", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "update(options: AnimatorOptions): void;", - "mainBuggyLine": "331" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.animator.d.ts", - "codeContextStaerLine": "492", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onframe: (progress: number) => void;", - "mainBuggyLine": "492" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.animator.d.ts", - "codeContextStaerLine": "500", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onFrame: (progress: number) => void;", - "mainBuggyLine": "500" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.animator.d.ts", - "codeContextStaerLine": "500", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onFrame: (progress: number) => void;", - "mainBuggyLine": "500" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.animator.d.ts", - "codeContextStaerLine": "522", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onfinish: () => void;", - "mainBuggyLine": "522" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.animator.d.ts", - "codeContextStaerLine": "530", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onFinish: () => void;", - "mainBuggyLine": "530" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.animator.d.ts", - "codeContextStaerLine": "530", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onFinish: () => void;", - "mainBuggyLine": "530" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.animator.d.ts", - "codeContextStaerLine": "552", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "oncancel: () => void;", - "mainBuggyLine": "552" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.animator.d.ts", - "codeContextStaerLine": "560", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onCancel: () => void;", - "mainBuggyLine": "560" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.animator.d.ts", - "codeContextStaerLine": "560", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onCancel: () => void;", - "mainBuggyLine": "560" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.animator.d.ts", - "codeContextStaerLine": "582", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onrepeat: () => void;", - "mainBuggyLine": "582" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.animator.d.ts", - "codeContextStaerLine": "590", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onRepeat: () => void;", - "mainBuggyLine": "590" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.animator.d.ts", - "codeContextStaerLine": "590", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onRepeat: () => void;", - "mainBuggyLine": "590" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.animator.d.ts", - "codeContextStaerLine": "598", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setExpectedFrameRateRange(rateRange: ExpectedFrameRateRange): void;", - "mainBuggyLine": "598" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.animator.d.ts", - "codeContextStaerLine": "629", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static createAnimator(options: AnimatorOptions): AnimatorResult;", - "mainBuggyLine": "629" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.AbilityConstant.d.ts", - "codeContextStaerLine": "289", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUTO_STARTUP = 8", - "mainBuggyLine": "289" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.AbilityConstant.d.ts", - "codeContextStaerLine": "368", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ABILITY_NOT_RESPONDING = 1", - "mainBuggyLine": "368" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.AbilityConstant.d.ts", - "codeContextStaerLine": "638", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum WindowMode", - "mainBuggyLine": "638" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.AbilityConstant.d.ts", - "codeContextStaerLine": "647", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WINDOW_MODE_UNDEFINED = 0", - "mainBuggyLine": "647" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.AbilityConstant.d.ts", - "codeContextStaerLine": "657", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WINDOW_MODE_FULLSCREEN = 1", - "mainBuggyLine": "657" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.AbilityConstant.d.ts", - "codeContextStaerLine": "667", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WINDOW_MODE_SPLIT_PRIMARY = 100", - "mainBuggyLine": "667" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.AbilityConstant.d.ts", - "codeContextStaerLine": "677", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WINDOW_MODE_SPLIT_SECONDARY = 101", - "mainBuggyLine": "677" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.AbilityConstant.d.ts", - "codeContextStaerLine": "687", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WINDOW_MODE_FLOATING = 102", - "mainBuggyLine": "687" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.abilityDelegatorRegistry.d.ts", - "codeContextStaerLine": "268", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type AbilityDelegator = _AbilityDelegator;", - "mainBuggyLine": "268" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.abilityDelegatorRegistry.d.ts", - "codeContextStaerLine": "291", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type AbilityDelegatorArgs = _AbilityDelegatorArgs;", - "mainBuggyLine": "291" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.abilityDelegatorRegistry.d.ts", - "codeContextStaerLine": "317", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type AbilityMonitor = _AbilityMonitor;", - "mainBuggyLine": "317" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.abilityDelegatorRegistry.d.ts", - "codeContextStaerLine": "332", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ShellCmdResult = _ShellCmdResult;", - "mainBuggyLine": "332" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.abilityManager.d.ts", - "codeContextStaerLine": "377", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function notifySaveAsResult(parameter: AbilityResult, requestCode: number, callback: AsyncCallback): void;", - "mainBuggyLine": "377" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.abilityManager.d.ts", - "codeContextStaerLine": "393", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function notifySaveAsResult(parameter: AbilityResult, requestCode: number): Promise;", - "mainBuggyLine": "393" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.abilityManager.d.ts", - "codeContextStaerLine": "458", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function notifyDebugAssertResult(sessionId: string, status: UserStatus): Promise;", - "mainBuggyLine": "458" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.abilityManager.d.ts", - "codeContextStaerLine": "484", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type AbilityRunningInfo = _AbilityRunningInfo;", - "mainBuggyLine": "484" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.abilityManager.d.ts", - "codeContextStaerLine": "493", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type AbilityStateData = _AbilityStateData.default;", - "mainBuggyLine": "493" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.abilityManager.d.ts", - "codeContextStaerLine": "502", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ExtensionRunningInfo = _ExtensionRunningInfo;", - "mainBuggyLine": "502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.abilityManager.d.ts", - "codeContextStaerLine": "511", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type AbilityForegroundStateObserver = _AbilityForegroundStateObserver.default;", - "mainBuggyLine": "511" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.AbilityStage.d.ts", - "codeContextStaerLine": "141", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onNewProcessRequest(want: Want): string;", - "mainBuggyLine": "141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "57", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum ApplicationState", - "mainBuggyLine": "57" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "65", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STATE_CREATE", - "mainBuggyLine": "65" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "74", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STATE_FOREGROUND", - "mainBuggyLine": "74" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "83", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STATE_ACTIVE", - "mainBuggyLine": "83" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "92", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STATE_BACKGROUND", - "mainBuggyLine": "92" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "101", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STATE_DESTROY", - "mainBuggyLine": "101" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "205", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum PreloadMode", - "mainBuggyLine": "205" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "214", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PRESS_DOWN", - "mainBuggyLine": "214" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "233", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'applicationState', observer: ApplicationStateObserver): number;", - "mainBuggyLine": "233" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "252", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'applicationState', observer: ApplicationStateObserver, bundleNameList: Array): number;", - "mainBuggyLine": "252" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "269", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'appForegroundState', observer: AppForegroundStateObserver): void;", - "mainBuggyLine": "269" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "287", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'abilityFirstFrameState', observer: AbilityFirstFrameStateObserver, bundleName?: string): void;", - "mainBuggyLine": "287" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "305", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'applicationState', observerId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "305" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "323", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'applicationState', observerId: number): Promise;", - "mainBuggyLine": "323" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "340", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'appForegroundState', observer?: AppForegroundStateObserver): void;", - "mainBuggyLine": "340" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "357", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'abilityFirstFrameState', observer?: AbilityFirstFrameStateObserver): void;", - "mainBuggyLine": "357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "373", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getForegroundApplications(callback: AsyncCallback>): void;", - "mainBuggyLine": "373" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "387", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getForegroundApplications(): Promise>;", - "mainBuggyLine": "387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "405", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function killProcessWithAccount(bundleName: string, accountId: number): Promise;", - "mainBuggyLine": "405" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "423", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function killProcessWithAccount(bundleName: string, accountId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "482", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function killProcessesByBundleName(bundleName: string): Promise;", - "mainBuggyLine": "482" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "499", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function killProcessesByBundleName(bundleName: string, callback: AsyncCallback);", - "mainBuggyLine": "499" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "516", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function clearUpApplicationData(bundleName: string): Promise;", - "mainBuggyLine": "516" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "533", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function clearUpApplicationData(bundleName: string, callback: AsyncCallback);", - "mainBuggyLine": "533" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "655", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getRunningProcessInformationByBundleType(\n bundleType: bundleManager.BundleType): Promise>;", - "mainBuggyLine": "655" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "699", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isSharedBundleRunning(bundleName: string, versionCode: number): Promise;", - "mainBuggyLine": "699" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "718", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isSharedBundleRunning(bundleName: string, versionCode: number, callback: AsyncCallback): void;", - "mainBuggyLine": "718" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "733", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getProcessMemoryByPid(pid: number): Promise;", - "mainBuggyLine": "733" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "748", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getProcessMemoryByPid(pid: number, callback: AsyncCallback): void;", - "mainBuggyLine": "748" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "763", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getRunningProcessInfoByBundleName(bundleName: string, callback: AsyncCallback>): void;", - "mainBuggyLine": "763" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "779", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getRunningProcessInfoByBundleName(bundleName: string, userId: number, callback: AsyncCallback>): void;", - "mainBuggyLine": "779" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "794", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getRunningProcessInfoByBundleName(bundleName: string): Promise>;", - "mainBuggyLine": "794" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "810", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getRunningProcessInfoByBundleName(bundleName: string, userId: number): Promise>;", - "mainBuggyLine": "810" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "827", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isApplicationRunning(bundleName: string): Promise;", - "mainBuggyLine": "827" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "845", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isApplicationRunning(bundleName: string, callback: AsyncCallback): void;", - "mainBuggyLine": "845" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "867", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function preloadApplication(bundleName: string, userId: number, mode: PreloadMode, appIndex?: number): Promise;", - "mainBuggyLine": "867" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "867", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function preloadApplication(bundleName: string, userId: number, mode: PreloadMode, appIndex?: number): Promise;", - "mainBuggyLine": "867" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "885", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getRunningMultiAppInfo(bundleName: string): Promise;", - "mainBuggyLine": "885" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "904", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isAppRunning(bundleName: string, appCloneIndex?: number): Promise;", - "mainBuggyLine": "904" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "914", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type AbilityStateData = _AbilityStateData.default;", - "mainBuggyLine": "914" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "924", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type AppStateData = _AppStateData.default;", - "mainBuggyLine": "924" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "934", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type ApplicationStateObserver = _ApplicationStateObserver.default;", - "mainBuggyLine": "934" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "944", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type AppForegroundStateObserver = _AppForegroundStateObserver.default;", - "mainBuggyLine": "944" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "970", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type ProcessData = _ProcessData.default;", - "mainBuggyLine": "970" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "980", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type AbilityFirstFrameStateObserver = _AbilityFirstFrameStateObserver.default;", - "mainBuggyLine": "980" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "990", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type AbilityFirstFrameStateData = _AbilityFirstFrameStateData.default;", - "mainBuggyLine": "990" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "287", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_abilityFirstFrameState] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'abilityFirstFrameState', observer: AbilityFirstFrameStateObserver, bundleName?: string): void;", - "mainBuggyLine": "287" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.app.ability.appManager.d.ts", - "codeContextStaerLine": "357", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_abilityFirstFrameState] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'abilityFirstFrameState', observer?: AbilityFirstFrameStateObserver): void;", - "mainBuggyLine": "357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "92", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type UIAbilityContext = _UIAbilityContext.default;", - "mainBuggyLine": "92" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "118", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type AbilityStageContext = _AbilityStageContext.default;", - "mainBuggyLine": "118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "144", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ApplicationContext = _ApplicationContext.default;", - "mainBuggyLine": "144" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "170", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type BaseContext = _BaseContext.default;", - "mainBuggyLine": "170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "199", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type Context = _Context.default;", - "mainBuggyLine": "199" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "216", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ExtensionContext = _ExtensionContext.default;", - "mainBuggyLine": "216" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "235", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type FormExtensionContext = _FormExtensionContext.default;", - "mainBuggyLine": "235" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "246", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type ServiceExtensionContext = _ServiceExtensionContext.default;", - "mainBuggyLine": "246" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "246", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ServiceExtensionContext = _ServiceExtensionContext.default;", - "mainBuggyLine": "246" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "272", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type EventHub = _EventHub.default;", - "mainBuggyLine": "272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "288", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type PacMap = _PacMap;", - "mainBuggyLine": "288" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "305", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type AbilityResult = _AbilityResult;", - "mainBuggyLine": "305" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "314", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type ConnectOptions = _ConnectOptions;", - "mainBuggyLine": "314" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "314", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ConnectOptions = _ConnectOptions;", - "mainBuggyLine": "314" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "324", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type UIExtensionContext = _UIExtensionContext.default;", - "mainBuggyLine": "324" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "324", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type UIExtensionContext = _UIExtensionContext.default;", - "mainBuggyLine": "324" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "335", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type AutoFillExtensionContext = _AutoFillExtensionContext.default;", - "mainBuggyLine": "335" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "335", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type AutoFillExtensionContext = _AutoFillExtensionContext.default;", - "mainBuggyLine": "335" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "345", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type AbilityStartCallback = _AbilityStartCallback;", - "mainBuggyLine": "345" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "355", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type AutoStartupInfo = _AutoStartupInfo;", - "mainBuggyLine": "355" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "355", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type AutoStartupInfo = _AutoStartupInfo;", - "mainBuggyLine": "355" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "365", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type AutoStartupCallback = _AutoStartupCallback;", - "mainBuggyLine": "365" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "365", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type AutoStartupCallback = _AutoStartupCallback;", - "mainBuggyLine": "365" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "376", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type VpnExtensionContext = _VpnExtensionContext.default;", - "mainBuggyLine": "376" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "376", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type VpnExtensionContext = _VpnExtensionContext.default;", - "mainBuggyLine": "376" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts", - "codeContextStaerLine": "386", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type EmbeddableUIAbilityContext = _EmbeddableUIAbilityContext.default;", - "mainBuggyLine": "386" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.app.ability.ConfigurationConstant.d.ts", - "codeContextStaerLine": "45", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [ConfigurationConstant] should be named by small hump.", - "language": "ts", - "mainBuggyCode": " declare namespace ConfigurationConstant", - "mainBuggyLine": "45" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.DriverExtensionAbility.d.ts", - "codeContextStaerLine": "31", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type DriverExtensionContext = _DriverExtensionContext;", - "mainBuggyLine": "31" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.DriverExtensionAbility.d.ts", - "codeContextStaerLine": "46", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "context: DriverExtensionContext;", - "mainBuggyLine": "46" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.errorManager.d.ts", - "codeContextStaerLine": "193", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ErrorObserver = _ErrorObserver.default;", - "mainBuggyLine": "193" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.errorManager.d.ts", - "codeContextStaerLine": "201", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type LoopObserver = _LoopObserver;", - "mainBuggyLine": "201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.errorManager.d.ts", - "codeContextStaerLine": "211", - "defectLevel": 2, - "defectType": "API_DEFINE_UNALLOWABLE_01", - "description": "API check error of [forbidden word]: Illegal [any] keyword used in the API.", - "language": "ts", - "mainBuggyCode": "export type UnhandledRejectionObserver = (reason: Error | any, promise: Promise) => void;", - "mainBuggyLine": "211" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.errorManager.d.ts", - "codeContextStaerLine": "211", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type UnhandledRejectionObserver = (reason: Error | any, promise: Promise) => void;", - "mainBuggyLine": "211" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.app.ability.errorManager.d.ts", - "codeContextStaerLine": "136", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_loopObserver] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'loopObserver', timeout: number, observer: LoopObserver): void;", - "mainBuggyLine": "136" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.app.ability.errorManager.d.ts", - "codeContextStaerLine": "149", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_loopObserver] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'loopObserver', observer?: LoopObserver): void;", - "mainBuggyLine": "149" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.app.ability.errorManager.d.ts", - "codeContextStaerLine": "163", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_unhandledRejection] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'unhandledRejection', observer: UnhandledRejectionObserver): void;", - "mainBuggyLine": "163" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.app.ability.errorManager.d.ts", - "codeContextStaerLine": "178", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_unhandledRejection] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'unhandledRejection', observer?: UnhandledRejectionObserver): void;", - "mainBuggyLine": "178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.insightIntent.d.ts", - "codeContextStaerLine": "68", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "UI_EXTENSION_ABILITY = 2", - "mainBuggyLine": "68" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.insightIntent.d.ts", - "codeContextStaerLine": "78", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SERVICE_EXTENSION_ABILITY = 3", - "mainBuggyLine": "78" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.InsightIntentExecutor.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onExecuteInUIExtensionAbility(name: string, param: Record, pageLoader: UIExtensionContentSession):\n insightIntent.ExecuteResult | Promise;", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.InsightIntentExecutor.d.ts", - "codeContextStaerLine": "99", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onExecuteInServiceExtensionAbility(name: string, param: Record):\n insightIntent.ExecuteResult | Promise;", - "mainBuggyLine": "99" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.missionManager.d.ts", - "codeContextStaerLine": "36", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " declare namespace missionManager", - "mainBuggyLine": "36" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.missionManager.d.ts", - "codeContextStaerLine": "508", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "export type MissionInfo = _MissionInfo;", - "mainBuggyLine": "508" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.missionManager.d.ts", - "codeContextStaerLine": "508", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type MissionInfo = _MissionInfo;", - "mainBuggyLine": "508" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.missionManager.d.ts", - "codeContextStaerLine": "518", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "export type MissionListener = _MissionListener;", - "mainBuggyLine": "518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.missionManager.d.ts", - "codeContextStaerLine": "518", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type MissionListener = _MissionListener;", - "mainBuggyLine": "518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.missionManager.d.ts", - "codeContextStaerLine": "528", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "export type MissionSnapshot = _MissionSnapshot;", - "mainBuggyLine": "528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.missionManager.d.ts", - "codeContextStaerLine": "528", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type MissionSnapshot = _MissionSnapshot;", - "mainBuggyLine": "528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.StartOptions.d.ts", - "codeContextStaerLine": "50", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "windowMode?: number;", - "mainBuggyLine": "50" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.StartOptions.d.ts", - "codeContextStaerLine": "79", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "withAnimation?: boolean;", - "mainBuggyLine": "79" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.StartOptions.d.ts", - "codeContextStaerLine": "89", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "windowLeft?: number;", - "mainBuggyLine": "89" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.StartOptions.d.ts", - "codeContextStaerLine": "99", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "windowTop?: number;", - "mainBuggyLine": "99" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.StartOptions.d.ts", - "codeContextStaerLine": "109", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "windowWidth?: number;", - "mainBuggyLine": "109" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.StartOptions.d.ts", - "codeContextStaerLine": "119", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "windowHeight?: number;", - "mainBuggyLine": "119" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.StartOptions.d.ts", - "codeContextStaerLine": "130", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "windowFocused?: boolean;", - "mainBuggyLine": "130" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.StartOptions.d.ts", - "codeContextStaerLine": "142", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "processMode?: contextConstant.ProcessMode;", - "mainBuggyLine": "142" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.StartOptions.d.ts", - "codeContextStaerLine": "154", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startupVisibility?: contextConstant.StartupVisibility;", - "mainBuggyLine": "154" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.UIAbility.d.ts", - "codeContextStaerLine": "351", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "callee: Callee;", - "mainBuggyLine": "351" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.UIExtensionContentSession.d.ts", - "codeContextStaerLine": "143", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbility(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.UIExtensionContentSession.d.ts", - "codeContextStaerLine": "178", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbility(want: Want, options: StartOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.UIExtensionContentSession.d.ts", - "codeContextStaerLine": "215", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbility(want: Want, options?: StartOptions): Promise;", - "mainBuggyLine": "215" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.UIExtensionContentSession.d.ts", - "codeContextStaerLine": "251", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbilityAsCaller(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "251" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.UIExtensionContentSession.d.ts", - "codeContextStaerLine": "286", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbilityAsCaller(want: Want, options: StartOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "286" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.UIExtensionContentSession.d.ts", - "codeContextStaerLine": "323", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbilityAsCaller(want: Want, options?: StartOptions): Promise;", - "mainBuggyLine": "323" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.UIExtensionContentSession.d.ts", - "codeContextStaerLine": "359", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbilityForResult(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "359" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.UIExtensionContentSession.d.ts", - "codeContextStaerLine": "394", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbilityForResult(want: Want, options: StartOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "394" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.UIExtensionContentSession.d.ts", - "codeContextStaerLine": "431", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbilityForResult(want: Want, options?: StartOptions): Promise;", - "mainBuggyLine": "431" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.Want.d.ts", - "codeContextStaerLine": "65", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName?: string;", - "mainBuggyLine": "65" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.Want.d.ts", - "codeContextStaerLine": "89", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityName?: string;", - "mainBuggyLine": "89" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.Want.d.ts", - "codeContextStaerLine": "241", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "moduleName?: string;", - "mainBuggyLine": "241" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.wantAgent.d.ts", - "codeContextStaerLine": "457", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type TriggerInfo = _TriggerInfo;", - "mainBuggyLine": "457" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.wantAgent.d.ts", - "codeContextStaerLine": "465", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type WantAgentInfo = _WantAgentInfo;", - "mainBuggyLine": "465" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.wantAgent.d.ts", - "codeContextStaerLine": "474", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type WantAgent = object;", - "mainBuggyLine": "474" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.wantConstant.d.ts", - "codeContextStaerLine": "60", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DLP_PARAMS_SANDBOX = 'ohos.dlp.params.sandbox'", - "mainBuggyLine": "60" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.wantConstant.d.ts", - "codeContextStaerLine": "69", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DLP_PARAMS_BUNDLE_NAME = 'ohos.dlp.params.bundleName'", - "mainBuggyLine": "69" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.wantConstant.d.ts", - "codeContextStaerLine": "78", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DLP_PARAMS_MODULE_NAME = 'ohos.dlp.params.moduleName'", - "mainBuggyLine": "78" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.wantConstant.d.ts", - "codeContextStaerLine": "87", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DLP_PARAMS_ABILITY_NAME = 'ohos.dlp.params.abilityName'", - "mainBuggyLine": "87" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.wantConstant.d.ts", - "codeContextStaerLine": "96", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DLP_PARAMS_INDEX = 'ohos.dlp.params.index'", - "mainBuggyLine": "96" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.wantConstant.d.ts", - "codeContextStaerLine": "221", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ASSERT_FAULT_SESSION_ID = 'ohos.ability.params.asssertFaultSessionId'", - "mainBuggyLine": "221" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.wantConstant.d.ts", - "codeContextStaerLine": "302", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FLAG_AUTH_PERSISTABLE_URI_PERMISSION = 0x00000040", - "mainBuggyLine": "302" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.wantConstant.d.ts", - "codeContextStaerLine": "325", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FLAG_START_WITHOUT_TIPS = 0x40000000", - "mainBuggyLine": "325" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.businessAbilityRouter.d.ts", - "codeContextStaerLine": "146", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type BusinessAbilityInfo = _BusinessAbilityInfo.BusinessAbilityInfo;", - "mainBuggyLine": "146" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.FormExtensionAbility.d.ts", - "codeContextStaerLine": "168", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onChangeFormVisibility(newStatus: Record): void;", - "mainBuggyLine": "168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.FormExtensionAbility.d.ts", - "codeContextStaerLine": "286", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onShareForm?(formId: string): Record;", - "mainBuggyLine": "286" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.FormExtensionAbility.d.ts", - "codeContextStaerLine": "308", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onAcquireFormData?(formId: string): Record;", - "mainBuggyLine": "308" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "899", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "THEME_KEY = 'ohos.extra.param.key.form_is_theme'", - "mainBuggyLine": "899" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "913", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_ID_KEY = 'ohos.extra.param.key.device_id'", - "mainBuggyLine": "913" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "980", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FORM_LOCATION_KEY = 'ohos.extra.param.key.form_location'", - "mainBuggyLine": "980" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1077", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bundleName?: string;", - "mainBuggyLine": "1077" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1107", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "supportedDimensions?: Array;", - "mainBuggyLine": "1107" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1118", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "supportedShapes?: Array;", - "mainBuggyLine": "1118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1386", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface PublishFormResult", - "mainBuggyLine": "1386" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1396", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "code: PublishFormErrorCode;", - "mainBuggyLine": "1396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1407", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "message: string;", - "mainBuggyLine": "1407" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1419", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum PublishFormErrorCode", - "mainBuggyLine": "1419" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1428", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SUCCESS", - "mainBuggyLine": "1428" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1438", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NO_SPACE", - "mainBuggyLine": "1438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1448", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PARAM_ERROR", - "mainBuggyLine": "1448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1458", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INTERNAL_ERROR", - "mainBuggyLine": "1458" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1470", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface FormProviderFilter", - "mainBuggyLine": "1470" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1480", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bundleName: string;", - "mainBuggyLine": "1480" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1491", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "formName?: string;", - "mainBuggyLine": "1491" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1502", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "moduleName?: string;", - "mainBuggyLine": "1502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1513", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "abilityName?: string;", - "mainBuggyLine": "1513" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1525", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isUnusedIncluded?: boolean;", - "mainBuggyLine": "1525" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1536", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface RunningFormInfo", - "mainBuggyLine": "1536" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1546", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly formId: string;", - "mainBuggyLine": "1546" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1557", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly bundleName: string;", - "mainBuggyLine": "1557" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1568", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly hostBundleName: string;", - "mainBuggyLine": "1568" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1579", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly formLocation: FormLocation;", - "mainBuggyLine": "1579" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1590", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly visibilityType: VisibilityType;", - "mainBuggyLine": "1590" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1601", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly moduleName: string;", - "mainBuggyLine": "1601" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1612", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly abilityName: string;", - "mainBuggyLine": "1612" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1623", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly formName: string;", - "mainBuggyLine": "1623" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1634", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly dimension: number;", - "mainBuggyLine": "1634" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1646", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly formUsageState: FormUsageState;", - "mainBuggyLine": "1646" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1657", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly formDescription: string;", - "mainBuggyLine": "1657" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1669", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly extraData?: Record;", - "mainBuggyLine": "1669" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1680", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum FormUsageState", - "mainBuggyLine": "1680" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1688", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "USED = 0", - "mainBuggyLine": "1688" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1696", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "UNUSED = 1", - "mainBuggyLine": "1696" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1707", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum FormLocation", - "mainBuggyLine": "1707" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1715", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OTHER = -1", - "mainBuggyLine": "1715" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1724", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DESKTOP = 0", - "mainBuggyLine": "1724" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1733", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FORM_CENTER = 1", - "mainBuggyLine": "1733" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1742", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FORM_MANAGER = 2", - "mainBuggyLine": "1742" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1751", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NEGATIVE_SCREEN = 3", - "mainBuggyLine": "1751" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1760", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FORM_CENTER_NEGATIVE_SCREEN = 4", - "mainBuggyLine": "1760" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1769", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FORM_MANAGER_NEGATIVE_SCREEN = 5", - "mainBuggyLine": "1769" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1778", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCREEN_LOCK = 6", - "mainBuggyLine": "1778" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts", - "codeContextStaerLine": "1787", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AI_SUGGESTION = 7", - "mainBuggyLine": "1787" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formProvider.d.ts", - "codeContextStaerLine": "309", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function requestPublishForm(\n want: Want,\n formBindingData: formBindingData.FormBindingData,\n callback: AsyncCallback\n ): void;", - "mainBuggyLine": "309" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formProvider.d.ts", - "codeContextStaerLine": "330", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function requestPublishForm(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formProvider.d.ts", - "codeContextStaerLine": "348", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function requestPublishForm(want: Want, formBindingData?: formBindingData.FormBindingData): Promise;", - "mainBuggyLine": "348" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formProvider.d.ts", - "codeContextStaerLine": "363", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isRequestPublishFormSupported(callback: AsyncCallback): void;", - "mainBuggyLine": "363" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formProvider.d.ts", - "codeContextStaerLine": "376", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isRequestPublishFormSupported(): Promise;", - "mainBuggyLine": "376" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.AccessibilityExtensionAbility.d.ts", - "codeContextStaerLine": "41", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type AccessibilityElement = _AccessibilityElement;", - "mainBuggyLine": "41" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.AccessibilityExtensionAbility.d.ts", - "codeContextStaerLine": "49", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ElementAttributeValues = _ElementAttributeValues;", - "mainBuggyLine": "49" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.AccessibilityExtensionAbility.d.ts", - "codeContextStaerLine": "57", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type FocusDirection = _FocusDirection;", - "mainBuggyLine": "57" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.AccessibilityExtensionAbility.d.ts", - "codeContextStaerLine": "65", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ElementAttributeKeys = keyof ElementAttributeValues;", - "mainBuggyLine": "65" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.AccessibilityExtensionAbility.d.ts", - "codeContextStaerLine": "73", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type FocusType = _FocusType;", - "mainBuggyLine": "73" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.AccessibilityExtensionAbility.d.ts", - "codeContextStaerLine": "81", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type WindowType = _WindowType;", - "mainBuggyLine": "81" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.AccessibilityExtensionAbility.d.ts", - "codeContextStaerLine": "89", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type Rect = _Rect;", - "mainBuggyLine": "89" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.AccessibilityExtensionAbility.d.ts", - "codeContextStaerLine": "98", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type AccessibilityExtensionContext = _AccessibilityExtensionContext.default;", - "mainBuggyLine": "98" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.AccessibilityExtensionAbility.d.ts", - "codeContextStaerLine": "113", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "context: AccessibilityExtensionContext;", - "mainBuggyLine": "113" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.AccessibilityExtensionAbility.d.ts", - "codeContextStaerLine": "230", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type GestureType = 'left' | 'leftThenRight' | 'leftThenUp' | 'leftThenDown' |\n 'right' | 'rightThenLeft' | 'rightThenUp' | 'rightThenDown' |\n 'up' | 'upThenLeft' | 'upThenRight' | 'upThenDown' |\n 'down' | 'downThenLeft' | 'downThenRight' | 'downThenUp' |\n 'twoFingerSingleTap' | 'twoFingerDoubleTap' | 'twoFingerDoubleTapAndHold' | 'twoFingerTripleTap' |\n 'twoFingerTripleTapAndHold' | 'threeFingerSingleTap' | 'threeFingerDoubleTap' | 'threeFingerDoubleTapAndHold' |\n 'threeFingerTripleTap' | 'threeFingerTripleTapAndHold' | 'fourFingerSingleTap' | 'fourFingerDoubleTap' |\n 'fourFingerDoubleTapAndHold' | 'fourFingerTripleTap' | 'fourFingerTripleTapAndHold' |\n 'threeFingerSwipeUp' | 'threeFingerSwipeDown' | 'threeFingerSwipeLeft' | 'threeFingerSwipeRight' |\n 'fourFingerSwipeUp' | 'fourFingerSwipeDown' | 'fourFingerSwipeLeft' | 'fourFingerSwipeRight';", - "mainBuggyLine": "230" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.AccessibilityExtensionAbility.d.ts", - "codeContextStaerLine": "247", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type PageUpdateType = 'pageContentUpdate' | 'pageStateUpdate';", - "mainBuggyLine": "247" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.AccessibilityExtensionAbility.d.ts", - "codeContextStaerLine": "255", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type TouchGuideType = 'touchBegin' | 'touchEnd';", - "mainBuggyLine": "255" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.DataShareExtensionAbility.d.ts", - "codeContextStaerLine": "36", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type UpdateOperation = dataShare.UpdateOperation;", - "mainBuggyLine": "36" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.missionManager.d.ts", - "codeContextStaerLine": "38", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " declare namespace missionManager", - "mainBuggyLine": "38" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.WindowExtensionAbility.d.ts", - "codeContextStaerLine": "43", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "context: WindowExtensionContext;", - "mainBuggyLine": "43" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.WindowExtensionAbility.d.ts", - "codeContextStaerLine": "88", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type WindowExtensionContext = _WindowExtensionContext;", - "mainBuggyLine": "88" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Chip.d.ets", - "codeContextStaerLine": "165", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "activatedFillColor?: ResourceColor;", - "mainBuggyLine": "165" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Chip.d.ets", - "codeContextStaerLine": "187", - "defectLevel": 2, - "defectType": "API_DOC_INTERFACE_01", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [interface] labels.", - "language": "ts", - "mainBuggyCode": " export interface SuffixIconOptions", - "mainBuggyLine": "187" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Chip.d.ets", - "codeContextStaerLine": "228", - "defectLevel": 2, - "defectType": "API_DOC_INTERFACE_01", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [interface] labels.", - "language": "ts", - "mainBuggyCode": " export interface PrefixIconOptions", - "mainBuggyLine": "228" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Chip.d.ets", - "codeContextStaerLine": "434", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "activatedFontColor?: ResourceColor;", - "mainBuggyLine": "434" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Chip.d.ets", - "codeContextStaerLine": "482", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "localizedLabelMargin?: LocalizedLabelMarginOptions;", - "mainBuggyLine": "482" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Chip.d.ets", - "codeContextStaerLine": "530", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "prefixSymbol?: SymbolOptions;", - "mainBuggyLine": "530" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Chip.d.ets", - "codeContextStaerLine": "578", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "suffixSymbol?: SymbolOptions;", - "mainBuggyLine": "578" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Chip.d.ets", - "codeContextStaerLine": "626", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "activated?: boolean;", - "mainBuggyLine": "626" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Chip.d.ets", - "codeContextStaerLine": "655", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "activatedBackgroundColor?: ResourceColor;", - "mainBuggyLine": "655" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Chip.d.ets", - "codeContextStaerLine": "693", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "size?: ChipSize | SizeOptions;", - "mainBuggyLine": "693" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Chip.d.ets", - "codeContextStaerLine": "722", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onClicked?: Callback;", - "mainBuggyLine": "722" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Chip.d.ets", - "codeContextStaerLine": "732", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "direction?: Direction;", - "mainBuggyLine": "732" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.advanced.Chip.d.ets", - "codeContextStaerLine": "752", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [Chip] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "@Builder\nexport declare function Chip(options: ChipOptions): void;", - "mainBuggyLine": "752" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ChipGroup.d.ets", - "codeContextStaerLine": "323", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct IconGroupSuffix", - "mainBuggyLine": "323" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ComposeListItem.d.ets", - "codeContextStaerLine": "41", - "defectLevel": 2, - "defectType": "API_DOC_ENUM_01", - "description": "API check error of [wrong value]: The [enum] tag type is incorrect. Please check if the tag type is { string } or { number }.", - "language": "ts", - "mainBuggyCode": " export declare enum IconType", - "mainBuggyLine": "41" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ComposeListItem.d.ets", - "codeContextStaerLine": "180", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "action?: () => void;", - "mainBuggyLine": "180" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ComposeListItem.d.ets", - "codeContextStaerLine": "223", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "onChange?: (value: boolean) => void;", - "mainBuggyLine": "223" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ComposeListItem.d.ets", - "codeContextStaerLine": "347", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "iconImageModifier?: ImageModifier;", - "mainBuggyLine": "347" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ComposeListItem.d.ets", - "codeContextStaerLine": "355", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "primaryTextModifier?: TextModifier;", - "mainBuggyLine": "355" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ComposeListItem.d.ets", - "codeContextStaerLine": "363", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "secondaryTextModifier?: TextModifier;", - "mainBuggyLine": "363" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ComposeListItem.d.ets", - "codeContextStaerLine": "371", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "descriptionModifier?: TextModifier;", - "mainBuggyLine": "371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ComposeListItem.d.ets", - "codeContextStaerLine": "519", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "arrow?: OperateIcon;", - "mainBuggyLine": "519" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ComposeListItem.d.ets", - "codeContextStaerLine": "533", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct ComposeListItem", - "mainBuggyLine": "533" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ComposeListItem.d.ets", - "codeContextStaerLine": "572", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "@Prop itemSpace?: number;", - "mainBuggyLine": "572" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ComposeListItem.d.ets", - "codeContextStaerLine": "581", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "@Prop composeItemPadding?: LocalizedPadding;", - "mainBuggyLine": "581" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ComposeTitleBar.d.ets", - "codeContextStaerLine": "80", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "action?: () => void;", - "mainBuggyLine": "80" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ComposeTitleBar.d.ets", - "codeContextStaerLine": "94", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct ComposeTitleBar", - "mainBuggyLine": "94" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Counter.d.ets", - "codeContextStaerLine": "210", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare class InlineStyleOptions", - "mainBuggyLine": "210" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Counter.d.ets", - "codeContextStaerLine": "330", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare class NumberStyleOptions", - "mainBuggyLine": "330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Counter.d.ets", - "codeContextStaerLine": "558", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare class DateStyleOptions", - "mainBuggyLine": "558" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Counter.d.ets", - "codeContextStaerLine": "743", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "direction?: Direction;", - "mainBuggyLine": "743" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Counter.d.ets", - "codeContextStaerLine": "761", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare struct CounterComponent", - "mainBuggyLine": "761" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Dialog.d.ets", - "codeContextStaerLine": "67", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "action?: () => void;", - "mainBuggyLine": "67" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Dialog.d.ets", - "codeContextStaerLine": "81", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "background?: ResourceColor;", - "mainBuggyLine": "81" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Dialog.d.ets", - "codeContextStaerLine": "95", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "fontColor?: ResourceColor;", - "mainBuggyLine": "95" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Dialog.d.ets", - "codeContextStaerLine": "104", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "buttonStyle?: ButtonStyleMode;", - "mainBuggyLine": "104" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Dialog.d.ets", - "codeContextStaerLine": "113", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "role?: ButtonRole;", - "mainBuggyLine": "113" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Dialog.d.ets", - "codeContextStaerLine": "126", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct TipsDialog", - "mainBuggyLine": "126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Dialog.d.ets", - "codeContextStaerLine": "253", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "checkAction?: (isChecked: boolean) => void;", - "mainBuggyLine": "253" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Dialog.d.ets", - "codeContextStaerLine": "253", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "checkAction?: (isChecked: boolean) => void;", - "mainBuggyLine": "253" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Dialog.d.ets", - "codeContextStaerLine": "298", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onCheckedChange?: Callback;", - "mainBuggyLine": "298" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Dialog.d.ets", - "codeContextStaerLine": "312", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct SelectDialog", - "mainBuggyLine": "312" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Dialog.d.ets", - "codeContextStaerLine": "421", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct ConfirmDialog", - "mainBuggyLine": "421" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Dialog.d.ets", - "codeContextStaerLine": "537", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onCheckedChange?: Callback;", - "mainBuggyLine": "537" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Dialog.d.ets", - "codeContextStaerLine": "551", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct AlertDialog", - "mainBuggyLine": "551" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Dialog.d.ets", - "codeContextStaerLine": "574", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "primaryTitle?: ResourceStr;", - "mainBuggyLine": "574" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Dialog.d.ets", - "codeContextStaerLine": "582", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "secondaryTitle?: ResourceStr;", - "mainBuggyLine": "582" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Dialog.d.ets", - "codeContextStaerLine": "648", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct LoadingDialog", - "mainBuggyLine": "648" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Dialog.d.ets", - "codeContextStaerLine": "696", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct CustomContentDialog", - "mainBuggyLine": "696" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Dialog.d.ets", - "codeContextStaerLine": "729", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "@BuilderParam contentBuilder: () => void;", - "mainBuggyLine": "729" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Dialog.d.ets", - "codeContextStaerLine": "765", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct PopupDialog", - "mainBuggyLine": "765" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Dialog.d.ets", - "codeContextStaerLine": "807", - "defectLevel": 2, - "defectType": "API_DOC_INTERFACE_01", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [interface] labels.", - "language": "ts", - "mainBuggyCode": " export declare interface PopupDialogOptions", - "mainBuggyLine": "807" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.EditableTitleBar.d.ets", - "codeContextStaerLine": "89", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "action?: () => void;", - "mainBuggyLine": "89" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.EditableTitleBar.d.ets", - "codeContextStaerLine": "98", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type EditableTitleBarItem = EditableTitleBarMenuItem;", - "mainBuggyLine": "98" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.EditableTitleBar.d.ets", - "codeContextStaerLine": "113", - "defectLevel": 2, - "defectType": "API_DOC_ENUM_01", - "description": "API check error of [wrong value]: The [enum] tag type is incorrect. Please check if the tag type is { string } or { number }.", - "language": "ts", - "mainBuggyCode": " export declare enum EditableLeftIconType", - "mainBuggyLine": "113" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.EditableTitleBar.d.ets", - "codeContextStaerLine": "202", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct EditableTitleBar", - "mainBuggyLine": "202" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.EditableTitleBar.d.ets", - "codeContextStaerLine": "226", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "imageItem?: EditableTitleBarItem;", - "mainBuggyLine": "226" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.EditableTitleBar.d.ets", - "codeContextStaerLine": "250", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "subtitle?: ResourceStr;", - "mainBuggyLine": "250" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.EditableTitleBar.d.ets", - "codeContextStaerLine": "260", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isSaveIconRequired: boolean;", - "mainBuggyLine": "260" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.EditableTitleBar.d.ets", - "codeContextStaerLine": "290", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "onSave?: () => void;", - "mainBuggyLine": "290" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.EditableTitleBar.d.ets", - "codeContextStaerLine": "305", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "onCancel?: () => void;", - "mainBuggyLine": "305" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.EditableTitleBar.d.ets", - "codeContextStaerLine": "315", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "options: EditableTitleBarOptions;", - "mainBuggyLine": "315" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.EditableTitleBar.d.ets", - "codeContextStaerLine": "330", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "@Prop contentMargin?: LocalizedMargin;", - "mainBuggyLine": "330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ExceptionPrompt.d.ets", - "codeContextStaerLine": "184", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "isShown?: boolean", - "mainBuggyLine": "184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ExceptionPrompt.d.ets", - "codeContextStaerLine": "200", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct ExceptionPrompt", - "mainBuggyLine": "200" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ExceptionPrompt.d.ets", - "codeContextStaerLine": "269", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [type] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "build(): void;", - "mainBuggyLine": "269" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Filter.d.ets", - "codeContextStaerLine": "40", - "defectLevel": 2, - "defectType": "API_DOC_ENUM_01", - "description": "API check error of [wrong value]: The [enum] tag type is incorrect. Please check if the tag type is { string } or { number }.", - "language": "ts", - "mainBuggyCode": " export declare enum FilterType", - "mainBuggyLine": "40" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Filter.d.ets", - "codeContextStaerLine": "179", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct Filter", - "mainBuggyLine": "179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Filter.d.ets", - "codeContextStaerLine": "194", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "@BuilderParam container: () => void;", - "mainBuggyLine": "194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Filter.d.ets", - "codeContextStaerLine": "239", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "onFilterChanged: (filterResults: Array) => void;", - "mainBuggyLine": "239" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Filter.d.ets", - "codeContextStaerLine": "239", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [1] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "onFilterChanged: (filterResults: Array) => void;", - "mainBuggyLine": "239" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Filter.d.ets", - "codeContextStaerLine": "239", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onFilterChanged: (filterResults: Array) => void;", - "mainBuggyLine": "239" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.advanced.FormMenu.d.ets", - "codeContextStaerLine": "88", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [AddFormMenuItem] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "@Builder\nexport declare function AddFormMenuItem(\n want: Want,\n componentId: string,\n options?: AddFormOptions\n): void;", - "mainBuggyLine": "88" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets", - "codeContextStaerLine": "29", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct FullScreenLaunchComponent", - "mainBuggyLine": "29" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.GridObjectSortComponent.d.ets", - "codeContextStaerLine": "203", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "type?: GridObjectSortComponentType;", - "mainBuggyLine": "203" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.GridObjectSortComponent.d.ets", - "codeContextStaerLine": "220", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "imageSize?: number | Resource;", - "mainBuggyLine": "220" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.GridObjectSortComponent.d.ets", - "codeContextStaerLine": "306", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_01", - "description": "API check error of [wrong value]: The [struct] tag value is incorrect. Please check if it matches the struct name.", - "language": "ts", - "mainBuggyCode": " export declare struct GridObjectSortComponent", - "mainBuggyLine": "306" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.GridObjectSortComponent.d.ets", - "codeContextStaerLine": "358", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "onSave: (select: Array, unselect: Array) => void;", - "mainBuggyLine": "358" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.GridObjectSortComponent.d.ets", - "codeContextStaerLine": "375", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "onCancel: () => void;", - "mainBuggyLine": "375" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Popup.d.ets", - "codeContextStaerLine": "36", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface PopupTextOptions", - "mainBuggyLine": "36" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Popup.d.ets", - "codeContextStaerLine": "119", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface PopupButtonOptions", - "mainBuggyLine": "119" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Popup.d.ets", - "codeContextStaerLine": "202", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface PopupIconOptions", - "mainBuggyLine": "202" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Popup.d.ets", - "codeContextStaerLine": "302", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface PopupOptions", - "mainBuggyLine": "302" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Popup.d.ets", - "codeContextStaerLine": "396", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "onClose?: () => void;", - "mainBuggyLine": "396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Popup.d.ets", - "codeContextStaerLine": "425", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "direction?: Direction;", - "mainBuggyLine": "425" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.advanced.Popup.d.ets", - "codeContextStaerLine": "445", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [Popup] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "@Builder\nexport declare function Popup(options: PopupOptions): void;", - "mainBuggyLine": "445" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ProgressButton.d.ets", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct ProgressButton", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ProgressButton.d.ets", - "codeContextStaerLine": "92", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "clickCallback: () => void;", - "mainBuggyLine": "92" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets", - "codeContextStaerLine": "212", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type DimensionNoPercentage = PX | VP | FP | LPX | Resource;", - "mainBuggyLine": "212" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets", - "codeContextStaerLine": "436", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "buttonPadding?: Padding | Dimension;", - "mainBuggyLine": "436" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets", - "codeContextStaerLine": "450", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "localizedButtonPadding?: LocalizedPadding;", - "mainBuggyLine": "450" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets", - "codeContextStaerLine": "471", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "textPadding?: Padding | Dimension;", - "mainBuggyLine": "471" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets", - "codeContextStaerLine": "481", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "localizedTextPadding?: LocalizedPadding;", - "mainBuggyLine": "481" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets", - "codeContextStaerLine": "510", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "direction?: Direction;", - "mainBuggyLine": "510" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets", - "codeContextStaerLine": "528", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type ItemRestriction = [T, T, T?, T?, T?];", - "mainBuggyLine": "528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets", - "codeContextStaerLine": "545", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type SegmentButtonItemTuple = ItemRestriction | ItemRestriction | ItemRestriction;", - "mainBuggyLine": "545" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets", - "codeContextStaerLine": "562", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare type SegmentButtonItemArray = Array | Array | Array;", - "mainBuggyLine": "562" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets", - "codeContextStaerLine": "583", - "defectLevel": 2, - "defectType": "API_DOC_INTERFACE_01", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [interface] labels.", - "language": "ts", - "mainBuggyCode": " interface TabSegmentButtonConstructionOptions", - "mainBuggyLine": "583" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets", - "codeContextStaerLine": "592", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "buttons: ItemRestriction;", - "mainBuggyLine": "592" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets", - "codeContextStaerLine": "614", - "defectLevel": 2, - "defectType": "API_DOC_INTERFACE_01", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [interface] labels.", - "language": "ts", - "mainBuggyCode": " interface CapsuleSegmentButtonConstructionOptions", - "mainBuggyLine": "614" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets", - "codeContextStaerLine": "675", - "defectLevel": 2, - "defectType": "API_DOC_INTERFACE_01", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [interface] labels.", - "language": "ts", - "mainBuggyCode": " interface TabSegmentButtonOptions", - "mainBuggyLine": "675" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets", - "codeContextStaerLine": "715", - "defectLevel": 2, - "defectType": "API_DOC_INTERFACE_01", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [interface] labels.", - "language": "ts", - "mainBuggyCode": " interface CapsuleSegmentButtonOptions", - "mainBuggyLine": "715" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets", - "codeContextStaerLine": "751", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface SegmentButtonItemOptionsConstructorOptions", - "mainBuggyLine": "751" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets", - "codeContextStaerLine": "892", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(options: SegmentButtonItemOptionsConstructorOptions);", - "mainBuggyLine": "892" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets", - "codeContextStaerLine": "1132", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "buttons: SegmentButtonItemOptionsArray;", - "mainBuggyLine": "1132" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets", - "codeContextStaerLine": "1332", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "localizedButtonPadding?: LocalizedPadding;", - "mainBuggyLine": "1332" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets", - "codeContextStaerLine": "1361", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "localizedTextPadding?: LocalizedPadding;", - "mainBuggyLine": "1361" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets", - "codeContextStaerLine": "1455", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "direction?: Direction;", - "mainBuggyLine": "1455" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets", - "codeContextStaerLine": "1473", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare struct SegmentButton", - "mainBuggyLine": "1473" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SelectionMenu.d.ets", - "codeContextStaerLine": "38", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface EditorMenuOptions", - "mainBuggyLine": "38" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SelectionMenu.d.ets", - "codeContextStaerLine": "114", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface ExpandedMenuOptions", - "mainBuggyLine": "114" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SelectionMenu.d.ets", - "codeContextStaerLine": "190", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [extends] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface SelectionMenuOptions", - "mainBuggyLine": "190" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SelectionMenu.d.ets", - "codeContextStaerLine": "190", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface SelectionMenuOptions", - "mainBuggyLine": "190" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SelectionMenu.d.ets", - "codeContextStaerLine": "190", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_01", - "description": "API check error of [wrong value]: The [extends] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export interface SelectionMenuOptions", - "mainBuggyLine": "190" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SelectionMenu.d.ets", - "codeContextStaerLine": "227", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "expandedMenuOptions?: Array;", - "mainBuggyLine": "227" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.advanced.SelectionMenu.d.ets", - "codeContextStaerLine": "341", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [SelectionMenu] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "@Builder\nexport declare function SelectionMenu(options: SelectionMenuOptions): void;", - "mainBuggyLine": "341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SelectTitleBar.d.ets", - "codeContextStaerLine": "80", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "action?: () => void;", - "mainBuggyLine": "80" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SelectTitleBar.d.ets", - "codeContextStaerLine": "94", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct SelectTitleBar", - "mainBuggyLine": "94" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SelectTitleBar.d.ets", - "codeContextStaerLine": "201", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "onSelected?: ((index: number) => void);", - "mainBuggyLine": "201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SplitLayout.d.ets", - "codeContextStaerLine": "36", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct SplitLayout", - "mainBuggyLine": "36" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SplitLayout.d.ets", - "codeContextStaerLine": "51", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "@BuilderParam container: () => void;", - "mainBuggyLine": "51" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "39", - "defectLevel": 2, - "defectType": "API_DOC_ENUM_01", - "description": "API check error of [wrong value]: The [enum] tag type is incorrect. Please check if the tag type is { string } or { number }.", - "language": "ts", - "mainBuggyCode": " export declare enum OperationType", - "mainBuggyLine": "39" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "133", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "action?: () => void;", - "mainBuggyLine": "133" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "161", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "options: Array;", - "mainBuggyLine": "161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "176", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "selected?: number;", - "mainBuggyLine": "176" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "191", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "value?: string;", - "mainBuggyLine": "191" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "206", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "onSelect?: (index: number, value?: string) => void;", - "mainBuggyLine": "206" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "306", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "fontColor?: Array;", - "mainBuggyLine": "306" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "324", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "effectStrategy?: SymbolEffectStrategy;", - "mainBuggyLine": "324" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "333", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "renderingStrategy?: SymbolRenderingStrategy;", - "mainBuggyLine": "333" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "347", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct SubHeader", - "mainBuggyLine": "347" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "363", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "@Prop icon?: ResourceStr;", - "mainBuggyLine": "363" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "371", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "iconSymbolOptions?: SymbolOptions;", - "mainBuggyLine": "371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "371", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "iconSymbolOptions?: SymbolOptions;", - "mainBuggyLine": "371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "386", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "@Prop primaryTitle?: ResourceStr;", - "mainBuggyLine": "386" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "401", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "@Prop secondaryTitle?: ResourceStr;", - "mainBuggyLine": "401" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "416", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "select?: SelectOptions;", - "mainBuggyLine": "416" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "431", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "@Prop operationType?: OperationType;", - "mainBuggyLine": "431" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "446", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "operationItem?: Array;", - "mainBuggyLine": "446" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "454", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "operationSymbolOptions?: Array;", - "mainBuggyLine": "454" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "454", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "operationSymbolOptions?: Array;", - "mainBuggyLine": "454" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "462", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "primaryTitleModifier?: TextModifier;", - "mainBuggyLine": "462" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "462", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "primaryTitleModifier?: TextModifier;", - "mainBuggyLine": "462" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "470", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "secondaryTitleModifier?: TextModifier;", - "mainBuggyLine": "470" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "470", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "secondaryTitleModifier?: TextModifier;", - "mainBuggyLine": "470" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "478", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "@BuilderParam titleBuilder?: () => void;", - "mainBuggyLine": "478" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "478", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "@BuilderParam titleBuilder?: () => void;", - "mainBuggyLine": "478" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "492", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "@Prop contentMargin?: LocalizedMargin;", - "mainBuggyLine": "492" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets", - "codeContextStaerLine": "503", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "@Prop contentPadding?: LocalizedPadding;", - "mainBuggyLine": "503" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SwipeRefresher.d.ets", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct SwipeRefresher", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SwipeRefresher.d.ets", - "codeContextStaerLine": "47", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "@Prop content?: string;", - "mainBuggyLine": "47" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SwipeRefresher.d.ets", - "codeContextStaerLine": "62", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "@Prop isLoading: boolean;", - "mainBuggyLine": "62" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TabTitleBar.d.ets", - "codeContextStaerLine": "80", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "action?: () => void;", - "mainBuggyLine": "80" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TabTitleBar.d.ets", - "codeContextStaerLine": "137", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct TabTitleBar", - "mainBuggyLine": "137" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TabTitleBar.d.ets", - "codeContextStaerLine": "152", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "tabItems: Array;", - "mainBuggyLine": "152" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TabTitleBar.d.ets", - "codeContextStaerLine": "167", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "menuItems?: Array;", - "mainBuggyLine": "167" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TabTitleBar.d.ets", - "codeContextStaerLine": "184", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "@BuilderParam\n swiperContent: () => void;", - "mainBuggyLine": "184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ToolBar.d.ets", - "codeContextStaerLine": "38", - "defectLevel": 2, - "defectType": "API_DOC_ENUM_01", - "description": "API check error of [wrong value]: The [enum] tag type is incorrect. Please check if the tag type is { string } or { number }.", - "language": "ts", - "mainBuggyCode": " export declare enum ItemState", - "mainBuggyLine": "38" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ToolBar.d.ets", - "codeContextStaerLine": "117", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "action?: () => void;", - "mainBuggyLine": "117" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ToolBar.d.ets", - "codeContextStaerLine": "159", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare class ToolBarOptions", - "mainBuggyLine": "159" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ToolBar.d.ets", - "codeContextStaerLine": "174", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct ToolBar", - "mainBuggyLine": "174" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets", - "codeContextStaerLine": "40", - "defectLevel": 2, - "defectType": "API_DOC_ENUM_01", - "description": "API check error of [wrong value]: The [enum] tag type is incorrect. Please check if the tag type is { string } or { number }.", - "language": "ts", - "mainBuggyCode": " export declare enum TreeListenType", - "mainBuggyLine": "40" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets", - "codeContextStaerLine": "204", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [returns] tag is missing.", - "language": "ts", - "mainBuggyCode": "static getInstance(): TreeListenerManager;", - "mainBuggyLine": "204" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets", - "codeContextStaerLine": "219", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [returns] tag is missing.", - "language": "ts", - "mainBuggyCode": "getTreeListener(): TreeListener;", - "mainBuggyLine": "219" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets", - "codeContextStaerLine": "233", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct TreeView", - "mainBuggyLine": "233" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets", - "codeContextStaerLine": "248", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "treeController: TreeController;", - "mainBuggyLine": "248" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets", - "codeContextStaerLine": "293", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "parentNodeId?: number,", - "mainBuggyLine": "293" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets", - "codeContextStaerLine": "308", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "childIndex?: number", - "mainBuggyLine": "308" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets", - "codeContextStaerLine": "338", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "parentNodeId?: number,", - "mainBuggyLine": "338" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets", - "codeContextStaerLine": "353", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "currentNodeId?: number,", - "mainBuggyLine": "353" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets", - "codeContextStaerLine": "368", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "isFolder?: boolean;", - "mainBuggyLine": "368" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets", - "codeContextStaerLine": "383", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "icon?: ResourceStr;", - "mainBuggyLine": "383" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets", - "codeContextStaerLine": "398", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "selectedIcon?: ResourceStr;", - "mainBuggyLine": "398" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets", - "codeContextStaerLine": "413", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "editIcon?: ResourceStr;", - "mainBuggyLine": "413" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets", - "codeContextStaerLine": "428", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "primaryTitle?: ResourceStr;", - "mainBuggyLine": "428" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets", - "codeContextStaerLine": "443", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "secondaryTitle?: ResourceStr;", - "mainBuggyLine": "443" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets", - "codeContextStaerLine": "458", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "container?: () => void;", - "mainBuggyLine": "458" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets", - "codeContextStaerLine": "530", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [returns] tag is missing.", - "language": "ts", - "mainBuggyCode": "addNode(nodeParam?: NodeParam): TreeController;", - "mainBuggyLine": "530" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets", - "codeContextStaerLine": "530", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "addNode(nodeParam?: NodeParam): TreeController;", - "mainBuggyLine": "530" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets", - "codeContextStaerLine": "553", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "refreshNode(parentId: number, parentSubTitle: ResourceStr, currentSubtitle: ResourceStr): void;", - "mainBuggyLine": "553" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets", - "codeContextStaerLine": "553", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "refreshNode(parentId: number, parentSubTitle: ResourceStr, currentSubtitle: ResourceStr): void;", - "mainBuggyLine": "553" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets", - "codeContextStaerLine": "553", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [3] [param] tag is incorrect. Please check if it matches the type of the [3] parameter.", - "language": "ts", - "mainBuggyCode": "refreshNode(parentId: number, parentSubTitle: ResourceStr, currentSubtitle: ResourceStr): void;", - "mainBuggyLine": "553" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.componentUtils.d.ts", - "codeContextStaerLine": "805", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type Matrix4Result = [\n number,\n number,\n number,\n number,\n number,\n number,\n number,\n number,\n number,\n number,\n number,\n number,\n number,\n number,\n number,\n number,\n ];", - "mainBuggyLine": "805" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.dragController.d.ts", - "codeContextStaerLine": "190", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_statusChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'statusChange', callback: Callback): void;", - "mainBuggyLine": "190" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.dragController.d.ts", - "codeContextStaerLine": "211", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_statusChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'statusChange', callback?: Callback): void;", - "mainBuggyLine": "211" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.drawableDescriptor.d.ts", - "codeContextStaerLine": "44", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "44" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.drawableDescriptor.d.ts", - "codeContextStaerLine": "89", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(\n foreground?: DrawableDescriptor,\n background?: DrawableDescriptor,\n mask?: DrawableDescriptor\n );", - "mainBuggyLine": "89" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.inspector.d.ts", - "codeContextStaerLine": "74", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_layout] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'layout', callback: () => void): void;", - "mainBuggyLine": "74" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.inspector.d.ts", - "codeContextStaerLine": "95", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_layout] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'layout', callback?: () => void): void;", - "mainBuggyLine": "95" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.inspector.d.ts", - "codeContextStaerLine": "116", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_draw] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'draw', callback: () => void): void;", - "mainBuggyLine": "116" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.inspector.d.ts", - "codeContextStaerLine": "137", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_draw] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'draw', callback?: () => void): void;", - "mainBuggyLine": "137" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "62", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " export enum NavDestinationState", - "mainBuggyLine": "62" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "80", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "ON_SHOWN = 0", - "mainBuggyLine": "80" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "99", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "ON_HIDDEN = 1", - "mainBuggyLine": "99" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "110", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "ON_APPEAR = 2", - "mainBuggyLine": "110" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "121", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "ON_DISAPPEAR = 3", - "mainBuggyLine": "121" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "176", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "ON_BACKPRESS = 100", - "mainBuggyLine": "176" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "786", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_navDestinationUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "export function on(type: 'navDestinationUpdate', options: { navigationId: ResourceStr }, callback: Callback): void;", - "mainBuggyLine": "786" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "811", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_navDestinationUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "export function off(type: 'navDestinationUpdate', options: { navigationId: ResourceStr }, callback?: Callback): void;", - "mainBuggyLine": "811" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "832", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_navDestinationUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "export function on(type: 'navDestinationUpdate', callback: Callback): void;", - "mainBuggyLine": "832" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "855", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_navDestinationUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "export function off(type: 'navDestinationUpdate', callback?: Callback): void;", - "mainBuggyLine": "855" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "868", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_scrollEvent] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "export function on(type: 'scrollEvent', options: ObserverOptions, callback: Callback): void;", - "mainBuggyLine": "868" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "882", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_scrollEvent] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "export function off(type: 'scrollEvent', options: ObserverOptions, callback?: Callback): void;", - "mainBuggyLine": "882" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "894", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_scrollEvent] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "export function on(type: 'scrollEvent', callback: Callback): void;", - "mainBuggyLine": "894" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "907", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_scrollEvent] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "export function off(type: 'scrollEvent', callback?: Callback): void;", - "mainBuggyLine": "907" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "930", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_routerPageUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "export function on(type: 'routerPageUpdate', context: UIAbilityContext | UIContext, callback: Callback): void;", - "mainBuggyLine": "930" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "955", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_routerPageUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "export function off(type: 'routerPageUpdate', context: UIAbilityContext | UIContext, callback?: Callback): void;", - "mainBuggyLine": "955" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "968", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_densityUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "export function on(type: 'densityUpdate', context: UIContext, callback: Callback): void;", - "mainBuggyLine": "968" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "982", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_densityUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "export function off(type: 'densityUpdate', context: UIContext, callback?: Callback): void;", - "mainBuggyLine": "982" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "995", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_willDraw] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "export function on(type: 'willDraw', context: UIContext, callback: Callback): void;", - "mainBuggyLine": "995" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "1009", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_willDraw] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "export function off(type: 'willDraw', context: UIContext, callback?: Callback): void;", - "mainBuggyLine": "1009" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "1022", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_didLayout] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "export function on(type: 'didLayout', context: UIContext, callback: Callback): void;", - "mainBuggyLine": "1022" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "1036", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_didLayout] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "export function off(type: 'didLayout', context: UIContext, callback?: Callback): void;", - "mainBuggyLine": "1036" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "1049", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_navDestinationSwitch] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "export function on(\n type: 'navDestinationSwitch',\n context: UIAbilityContext | UIContext,\n callback: Callback\n ): void;", - "mainBuggyLine": "1049" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "1067", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_navDestinationSwitch] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "export function off(\n type: 'navDestinationSwitch',\n context: UIAbilityContext | UIContext,\n callback?: Callback\n ): void;", - "mainBuggyLine": "1067" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "1085", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_navDestinationSwitch] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "export function on(\n type: 'navDestinationSwitch',\n context: UIAbilityContext | UIContext,\n observerOptions: NavDestinationSwitchObserverOptions,\n callback: Callback\n ): void;", - "mainBuggyLine": "1085" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.observer.d.ts", - "codeContextStaerLine": "1105", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_navDestinationSwitch] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "export function off(\n type: 'navDestinationSwitch',\n context: UIAbilityContext | UIContext,\n observerOptions: NavDestinationSwitchObserverOptions,\n callback?: Callback\n ): void;", - "mainBuggyLine": "1105" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface ShapeSize", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "40", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "width?: number | string;", - "mainBuggyLine": "40" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "49", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "height?: number | string;", - "mainBuggyLine": "49" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "61", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface RectShapeOptions", - "mainBuggyLine": "61" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "61", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface RectShapeOptions", - "mainBuggyLine": "61" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "69", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "radius?: number | string | Array;", - "mainBuggyLine": "69" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "81", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface RoundRectShapeOptions", - "mainBuggyLine": "81" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "81", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface RoundRectShapeOptions", - "mainBuggyLine": "81" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "89", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "radiusWidth?: number | string;", - "mainBuggyLine": "89" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "98", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "radiusHeight?: number | string;", - "mainBuggyLine": "98" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "110", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface PathShapeOptions", - "mainBuggyLine": "110" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "118", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "commands?: string;", - "mainBuggyLine": "118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "129", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class CommonShapeMethod", - "mainBuggyLine": "129" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "140", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "offset(offset: Position): T;", - "mainBuggyLine": "140" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "152", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "fill(color: ResourceColor): T;", - "mainBuggyLine": "152" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "164", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "position(position: Position): T;", - "mainBuggyLine": "164" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "176", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare class BaseShape", - "mainBuggyLine": "176" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "187", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "width(width: Length): T;", - "mainBuggyLine": "187" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "199", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "height(height: Length): T;", - "mainBuggyLine": "199" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "211", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "size(size: SizeOptions): T;", - "mainBuggyLine": "211" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "223", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " export declare class RectShape", - "mainBuggyLine": "223" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "233", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor(options?: RectShapeOptions | RoundRectShapeOptions);", - "mainBuggyLine": "233" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "245", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "radiusWidth(rWidth: number | string): RectShape;", - "mainBuggyLine": "245" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "257", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "radiusHeight(rHeight: number | string): RectShape;", - "mainBuggyLine": "257" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "269", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "radius(radius: number | string | Array): RectShape;", - "mainBuggyLine": "269" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "281", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " export declare class CircleShape", - "mainBuggyLine": "281" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "291", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor(options?: ShapeSize);", - "mainBuggyLine": "291" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "303", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " export declare class EllipseShape", - "mainBuggyLine": "303" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "313", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor(options?: ShapeSize);", - "mainBuggyLine": "313" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "325", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " export declare class PathShape", - "mainBuggyLine": "325" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "335", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor(options?: PathShapeOptions);", - "mainBuggyLine": "335" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts", - "codeContextStaerLine": "347", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "commands(commands: string): PathShape;", - "mainBuggyLine": "347" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "520", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "back(index: number, params?: Object): void;", - "mainBuggyLine": "520" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "586", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getStateByIndex(index: number): router.RouterState | undefined;", - "mainBuggyLine": "586" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "597", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getStateByUrl(url: string): Array;", - "mainBuggyLine": "597" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1046", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "showActionMenu(options: promptAction.ActionMenuOptions, callback: promptAction.ActionMenuSuccessResponse): void;", - "mainBuggyLine": "1046" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1165", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type ClickEventListenerCallback = (event: ClickEvent, node?: FrameNode) => void;", - "mainBuggyLine": "1165" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1165", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type ClickEventListenerCallback = (event: ClickEvent, node?: FrameNode) => void;", - "mainBuggyLine": "1165" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1165", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [2] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "declare type ClickEventListenerCallback = (event: ClickEvent, node?: FrameNode) => void;", - "mainBuggyLine": "1165" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1165", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type ClickEventListenerCallback = (event: ClickEvent, node?: FrameNode) => void;", - "mainBuggyLine": "1165" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1179", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type GestureEventListenerCallback = (event: GestureEvent, node?: FrameNode) => void;", - "mainBuggyLine": "1179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1179", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type GestureEventListenerCallback = (event: GestureEvent, node?: FrameNode) => void;", - "mainBuggyLine": "1179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1179", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [2] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "declare type GestureEventListenerCallback = (event: GestureEvent, node?: FrameNode) => void;", - "mainBuggyLine": "1179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1179", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type GestureEventListenerCallback = (event: GestureEvent, node?: FrameNode) => void;", - "mainBuggyLine": "1179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1299", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'scrollEvent', options: observer.ObserverOptions, callback: Callback): void;", - "mainBuggyLine": "1299" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1312", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'scrollEvent', options: observer.ObserverOptions, callback?: Callback): void;", - "mainBuggyLine": "1312" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1323", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'scrollEvent', callback: Callback): void;", - "mainBuggyLine": "1323" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1335", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'scrollEvent', callback?: Callback): void;", - "mainBuggyLine": "1335" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1390", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'densityUpdate', callback: Callback): void;", - "mainBuggyLine": "1390" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1402", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'densityUpdate', callback?: Callback): void;", - "mainBuggyLine": "1402" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1413", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'willDraw', callback: Callback): void;", - "mainBuggyLine": "1413" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1425", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'willDraw', callback?: Callback): void;", - "mainBuggyLine": "1425" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1436", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'didLayout', callback: Callback): void;", - "mainBuggyLine": "1436" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1448", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'didLayout', callback?: Callback): void;", - "mainBuggyLine": "1448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1459", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(\n type: 'navDestinationSwitch',\n callback: Callback\n ): void;", - "mainBuggyLine": "1459" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1474", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(\n type: 'navDestinationSwitch',\n callback?: Callback\n ): void;", - "mainBuggyLine": "1474" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1489", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(\n type: 'navDestinationSwitch',\n observerOptions: observer.NavDestinationSwitchObserverOptions,\n callback: Callback\n ): void;", - "mainBuggyLine": "1489" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1506", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(\n type: 'navDestinationSwitch',\n observerOptions: observer.NavDestinationSwitchObserverOptions,\n callback?: Callback\n ): void;", - "mainBuggyLine": "1506" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1522", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'willClick', callback: ClickEventListenerCallback): void;", - "mainBuggyLine": "1522" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1534", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'willClick', callback?: ClickEventListenerCallback): void;", - "mainBuggyLine": "1534" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1546", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'didClick', callback: ClickEventListenerCallback): void;", - "mainBuggyLine": "1546" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1558", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'didClick', callback?: ClickEventListenerCallback): void;", - "mainBuggyLine": "1558" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1570", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'willClick', callback: GestureEventListenerCallback): void;", - "mainBuggyLine": "1570" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1582", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'willClick', callback?: GestureEventListenerCallback): void;", - "mainBuggyLine": "1582" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1594", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'didClick', callback: GestureEventListenerCallback): void;", - "mainBuggyLine": "1594" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1606", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'didClick', callback?: GestureEventListenerCallback): void;", - "mainBuggyLine": "1606" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1938", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setDragEventStrictReportingEnabled(enable: boolean): void;", - "mainBuggyLine": "1938" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2078", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type Context = common.Context;", - "mainBuggyLine": "2078" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2214", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFilteredInspectorTree(filters?: Array): string;", - "mainBuggyLine": "2214" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2230", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFilteredInspectorTreeById(id: string, depth: number, filters?: Array): string;", - "mainBuggyLine": "2230" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2314", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getOverlayManager(): OverlayManager;", - "mainBuggyLine": "2314" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2533", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getMeasureUtils(): MeasureUtils;", - "mainBuggyLine": "2533" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2566", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "animateToImmediately(param: AnimateParam, event: Callback): void;", - "mainBuggyLine": "2566" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2577", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFrameNodeById(id: string): FrameNode | null;", - "mainBuggyLine": "2577" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2588", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFrameNodeByUniqueId(id: number): FrameNode | null;", - "mainBuggyLine": "2588" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2596", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFocusController(): FocusController;", - "mainBuggyLine": "2596" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2606", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getCursorController(): CursorController;", - "mainBuggyLine": "2606" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2616", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getContextMenuController(): ContextMenuController;", - "mainBuggyLine": "2616" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2624", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getComponentSnapshot(): ComponentSnapshot;", - "mainBuggyLine": "2624" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2633", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "vp2px(value: number): number;", - "mainBuggyLine": "2633" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2642", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "px2vp(value: number): number;", - "mainBuggyLine": "2642" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2651", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fp2px(value: number): number;", - "mainBuggyLine": "2651" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2660", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "px2fp(value: number): number;", - "mainBuggyLine": "2660" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2669", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "lpx2px(value: number): number;", - "mainBuggyLine": "2669" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2678", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "px2lpx(value: number): number;", - "mainBuggyLine": "2678" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2689", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSharedLocalStorage(): LocalStorage | undefined;", - "mainBuggyLine": "2689" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2700", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getHostContext(): Context | undefined;", - "mainBuggyLine": "2700" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2712", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setDynamicDimming(id: string, value: number): void;", - "mainBuggyLine": "2712" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2722", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getWindowName(): string | undefined;", - "mainBuggyLine": "2722" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2731", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "postFrameCallback(frameCallback: FrameCallback): void;", - "mainBuggyLine": "2731" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2741", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "postDelayedFrameCallback(frameCallback: FrameCallback, delayTime: number): void;", - "mainBuggyLine": "2741" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1218", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_navDestinationUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'navDestinationUpdate', options: { navigationId: ResourceStr }, callback: Callback): void;", - "mainBuggyLine": "1218" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1243", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_navDestinationUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'navDestinationUpdate', options: { navigationId: ResourceStr }, callback?: Callback): void;", - "mainBuggyLine": "1243" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1264", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_navDestinationUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'navDestinationUpdate', callback: Callback): void;", - "mainBuggyLine": "1264" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1287", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_navDestinationUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'navDestinationUpdate', callback?: Callback): void;", - "mainBuggyLine": "1287" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1299", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_scrollEvent] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'scrollEvent', options: observer.ObserverOptions, callback: Callback): void;", - "mainBuggyLine": "1299" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1312", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_scrollEvent] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'scrollEvent', options: observer.ObserverOptions, callback?: Callback): void;", - "mainBuggyLine": "1312" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1323", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_scrollEvent] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'scrollEvent', callback: Callback): void;", - "mainBuggyLine": "1323" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1335", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_scrollEvent] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'scrollEvent', callback?: Callback): void;", - "mainBuggyLine": "1335" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1356", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_routerPageUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'routerPageUpdate', callback: Callback): void;", - "mainBuggyLine": "1356" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1379", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_routerPageUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'routerPageUpdate', callback?: Callback): void;", - "mainBuggyLine": "1379" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1390", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_densityUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'densityUpdate', callback: Callback): void;", - "mainBuggyLine": "1390" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1402", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_densityUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'densityUpdate', callback?: Callback): void;", - "mainBuggyLine": "1402" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1413", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_willDraw] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'willDraw', callback: Callback): void;", - "mainBuggyLine": "1413" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1425", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_willDraw] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'willDraw', callback?: Callback): void;", - "mainBuggyLine": "1425" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1436", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_didLayout] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'didLayout', callback: Callback): void;", - "mainBuggyLine": "1436" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1448", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_didLayout] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'didLayout', callback?: Callback): void;", - "mainBuggyLine": "1448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1459", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_navDestinationSwitch] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(\n type: 'navDestinationSwitch',\n callback: Callback\n ): void;", - "mainBuggyLine": "1459" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1474", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_navDestinationSwitch] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(\n type: 'navDestinationSwitch',\n callback?: Callback\n ): void;", - "mainBuggyLine": "1474" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1489", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_navDestinationSwitch] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(\n type: 'navDestinationSwitch',\n observerOptions: observer.NavDestinationSwitchObserverOptions,\n callback: Callback\n ): void;", - "mainBuggyLine": "1489" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1506", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_navDestinationSwitch] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(\n type: 'navDestinationSwitch',\n observerOptions: observer.NavDestinationSwitchObserverOptions,\n callback?: Callback\n ): void;", - "mainBuggyLine": "1506" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1522", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_willClick] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'willClick', callback: ClickEventListenerCallback): void;", - "mainBuggyLine": "1522" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1534", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_willClick] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'willClick', callback?: ClickEventListenerCallback): void;", - "mainBuggyLine": "1534" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1546", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_didClick] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'didClick', callback: ClickEventListenerCallback): void;", - "mainBuggyLine": "1546" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1558", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_didClick] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'didClick', callback?: ClickEventListenerCallback): void;", - "mainBuggyLine": "1558" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1570", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_willClick] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'willClick', callback: GestureEventListenerCallback): void;", - "mainBuggyLine": "1570" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1582", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_willClick] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'willClick', callback?: GestureEventListenerCallback): void;", - "mainBuggyLine": "1582" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1594", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_didClick] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'didClick', callback: GestureEventListenerCallback): void;", - "mainBuggyLine": "1594" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "1606", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_didClick] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'didClick', callback?: GestureEventListenerCallback): void;", - "mainBuggyLine": "1606" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2633", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [vp2px] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "vp2px(value: number): number;", - "mainBuggyLine": "2633" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2642", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [px2vp] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "px2vp(value: number): number;", - "mainBuggyLine": "2642" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2651", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [fp2px] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "fp2px(value: number): number;", - "mainBuggyLine": "2651" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2660", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [px2fp] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "px2fp(value: number): number;", - "mainBuggyLine": "2660" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2669", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [lpx2px] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "lpx2px(value: number): number;", - "mainBuggyLine": "2669" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.UIContext.d.ts", - "codeContextStaerLine": "2678", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [px2lpx] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "px2lpx(value: number): number;", - "mainBuggyLine": "2678" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.uiExtension.d.ts", - "codeContextStaerLine": "67", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_avoidAreaChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'avoidAreaChange', callback: Callback): void;", - "mainBuggyLine": "67" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.uiExtension.d.ts", - "codeContextStaerLine": "81", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_avoidAreaChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'avoidAreaChange', callback?: Callback): void;", - "mainBuggyLine": "81" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.uiExtension.d.ts", - "codeContextStaerLine": "95", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_windowSizeChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'windowSizeChange', callback: Callback): void;", - "mainBuggyLine": "95" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.arkui.uiExtension.d.ts", - "codeContextStaerLine": "109", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_windowSizeChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'windowSizeChange', callback?: Callback): void;", - "mainBuggyLine": "109" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "33", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare namespace backgroundTaskManager", - "mainBuggyLine": "33" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "33", - "defectLevel": 2, - "defectType": "API_DOC_NAMESPACE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [namespace] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare namespace backgroundTaskManager", - "mainBuggyLine": "33" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "53", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "requestId: number;", - "mainBuggyLine": "53" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "53", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "requestId: number;", - "mainBuggyLine": "53" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "62", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "actualDelayTime: number;", - "mainBuggyLine": "62" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "62", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "actualDelayTime: number;", - "mainBuggyLine": "62" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "74", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "function cancelSuspendDelay(requestId: number): void;", - "mainBuggyLine": "74" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "97", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [returns] tag is missing.", - "language": "ts", - "mainBuggyCode": "function getRemainingDelayTime(requestId: number): Promise;", - "mainBuggyLine": "97" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "110", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "function requestSuspendDelay(reason: string, callback: Callback): DelaySuspendInfo;", - "mainBuggyLine": "110" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "141", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [returns] tag is missing.", - "language": "ts", - "mainBuggyCode": "function startBackgroundRunning(context: Context, bgMode: BackgroundMode, wantAgent: WantAgent): Promise;", - "mainBuggyLine": "141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "164", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [returns] tag is missing.", - "language": "ts", - "mainBuggyCode": "function stopBackgroundRunning(context: Context): Promise;", - "mainBuggyLine": "164" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "175", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " export enum BackgroundMode", - "mainBuggyLine": "175" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "182", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "DATA_TRANSFER = 1", - "mainBuggyLine": "182" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "182", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DATA_TRANSFER = 1", - "mainBuggyLine": "182" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "190", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "AUDIO_PLAYBACK = 2", - "mainBuggyLine": "190" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "190", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_PLAYBACK = 2", - "mainBuggyLine": "190" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "198", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "AUDIO_RECORDING = 3", - "mainBuggyLine": "198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "198", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_RECORDING = 3", - "mainBuggyLine": "198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "206", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "LOCATION = 4", - "mainBuggyLine": "206" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "206", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LOCATION = 4", - "mainBuggyLine": "206" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "214", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "BLUETOOTH_INTERACTION = 5", - "mainBuggyLine": "214" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "214", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "BLUETOOTH_INTERACTION = 5", - "mainBuggyLine": "214" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "222", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "MULTI_DEVICE_CONNECTION = 6", - "mainBuggyLine": "222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "222", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MULTI_DEVICE_CONNECTION = 6", - "mainBuggyLine": "222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "231", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "WIFI_INTERACTION = 7", - "mainBuggyLine": "231" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "231", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_INTERACTION = 7", - "mainBuggyLine": "231" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "240", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "VOIP = 8", - "mainBuggyLine": "240" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "240", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VOIP = 8", - "mainBuggyLine": "240" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "249", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "TASK_KEEPING = 9", - "mainBuggyLine": "249" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts", - "codeContextStaerLine": "249", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TASK_KEEPING = 9", - "mainBuggyLine": "249" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.base.d.ts", - "codeContextStaerLine": "51", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": " export interface Callback", - "mainBuggyLine": "51" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.base.d.ts", - "codeContextStaerLine": "106", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": " export interface ErrorCallback", - "mainBuggyLine": "106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.base.d.ts", - "codeContextStaerLine": "161", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": " export interface AsyncCallback", - "mainBuggyLine": "161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.base.d.ts", - "codeContextStaerLine": "229", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface BusinessError", - "mainBuggyLine": "229" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.base.d.ts", - "codeContextStaerLine": "229", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": " export interface BusinessError", - "mainBuggyLine": "229" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "56", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setBatteryConfig(sceneName: string, sceneValue: string): number;", - "mainBuggyLine": "56" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "71", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getBatteryConfig(sceneName: string): string;", - "mainBuggyLine": "71" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isBatteryConfigSupported(sceneName: string): boolean;", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "129", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const healthStatus: BatteryHealthState;", - "mainBuggyLine": "129" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "138", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const pluggedType: BatteryPluggedType;", - "mainBuggyLine": "138" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "147", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const voltage: number;", - "mainBuggyLine": "147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "156", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const technology: string;", - "mainBuggyLine": "156" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "165", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const batteryTemperature: number;", - "mainBuggyLine": "165" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "174", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const isBatteryPresent: boolean;", - "mainBuggyLine": "174" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "183", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const batteryCapacityLevel: BatteryCapacityLevel;", - "mainBuggyLine": "183" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "193", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const estimatedRemainingChargeTime: number;", - "mainBuggyLine": "193" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "203", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const totalEnergy: number;", - "mainBuggyLine": "203" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "212", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const nowCurrent: number;", - "mainBuggyLine": "212" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "222", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const remainingEnergy: number;", - "mainBuggyLine": "222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "231", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum BatteryPluggedType", - "mainBuggyLine": "231" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "238", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NONE", - "mainBuggyLine": "238" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "245", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AC", - "mainBuggyLine": "245" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "252", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "USB", - "mainBuggyLine": "252" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "259", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIRELESS", - "mainBuggyLine": "259" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "343", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum BatteryHealthState", - "mainBuggyLine": "343" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "350", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "UNKNOWN", - "mainBuggyLine": "350" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "357", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GOOD", - "mainBuggyLine": "357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "364", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OVERHEAT", - "mainBuggyLine": "364" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "371", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OVERVOLTAGE", - "mainBuggyLine": "371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "378", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COLD", - "mainBuggyLine": "378" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "385", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEAD", - "mainBuggyLine": "385" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "395", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum BatteryCapacityLevel", - "mainBuggyLine": "395" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "402", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LEVEL_FULL", - "mainBuggyLine": "402" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "409", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LEVEL_HIGH", - "mainBuggyLine": "409" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "416", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LEVEL_NORMAL", - "mainBuggyLine": "416" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "423", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LEVEL_LOW", - "mainBuggyLine": "423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "430", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LEVEL_WARNING", - "mainBuggyLine": "430" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "437", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LEVEL_CRITICAL", - "mainBuggyLine": "437" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "444", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LEVEL_SHUTDOWN", - "mainBuggyLine": "444" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "454", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum CommonEventBatteryChangedKey", - "mainBuggyLine": "454" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "461", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EXTRA_SOC = 'soc'", - "mainBuggyLine": "461" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "468", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EXTRA_CHARGE_STATE = 'chargeState'", - "mainBuggyLine": "468" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "475", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EXTRA_HEALTH_STATE = 'healthState'", - "mainBuggyLine": "475" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "482", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EXTRA_PLUGGED_TYPE = 'pluggedType'", - "mainBuggyLine": "482" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "489", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EXTRA_VOLTAGE = 'voltage'", - "mainBuggyLine": "489" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "496", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EXTRA_TECHNOLOGY = 'technology'", - "mainBuggyLine": "496" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "503", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EXTRA_TEMPERATURE = 'temperature'", - "mainBuggyLine": "503" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "510", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EXTRA_PRESENT = 'present'", - "mainBuggyLine": "510" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts", - "codeContextStaerLine": "517", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EXTRA_CAPACITY_LEVEL = 'capacityLevel'", - "mainBuggyLine": "517" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryStatistics.d.ts", - "codeContextStaerLine": "212", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uid: number;", - "mainBuggyLine": "212" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryStatistics.d.ts", - "codeContextStaerLine": "220", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: ConsumptionType;", - "mainBuggyLine": "220" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryStatistics.d.ts", - "codeContextStaerLine": "228", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "power: number;", - "mainBuggyLine": "228" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.a2dp.d.ts", - "codeContextStaerLine": "38", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type BaseProfile = baseProfile.BaseProfile;", - "mainBuggyLine": "38" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.a2dp.d.ts", - "codeContextStaerLine": "58", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface A2dpSourceProfile", - "mainBuggyLine": "58" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.a2dp.d.ts", - "codeContextStaerLine": "379", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "codecType: CodecType;", - "mainBuggyLine": "379" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.a2dp.d.ts", - "codeContextStaerLine": "386", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "codecBitsPerSample: CodecBitsPerSample;", - "mainBuggyLine": "386" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.a2dp.d.ts", - "codeContextStaerLine": "393", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "codecChannelMode: CodecChannelMode;", - "mainBuggyLine": "393" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.a2dp.d.ts", - "codeContextStaerLine": "400", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "codecSampleRate: CodecSampleRate;", - "mainBuggyLine": "400" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.access.d.ts", - "codeContextStaerLine": "103", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function restrictBluetooth(): Promise;", - "mainBuggyLine": "103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.access.d.ts", - "codeContextStaerLine": "147", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function factoryReset(callback: AsyncCallback): void;", - "mainBuggyLine": "147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.access.d.ts", - "codeContextStaerLine": "163", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function factoryReset(): Promise;", - "mainBuggyLine": "163" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.access.d.ts", - "codeContextStaerLine": "179", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getLocalAddress(): string;", - "mainBuggyLine": "179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.bluetooth.access.d.ts", - "codeContextStaerLine": "208", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_stateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'stateChange', callback: Callback): void;", - "mainBuggyLine": "208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.bluetooth.access.d.ts", - "codeContextStaerLine": "237", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_stateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'stateChange', callback?: Callback): void;", - "mainBuggyLine": "237" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.baseProfile.d.ts", - "codeContextStaerLine": "38", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type ProfileConnectionState = constant.ProfileConnectionState;", - "mainBuggyLine": "38" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.baseProfile.d.ts", - "codeContextStaerLine": "141", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.baseProfile.d.ts", - "codeContextStaerLine": "149", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "state: ProfileConnectionState;", - "mainBuggyLine": "149" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "109", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getConnectedBLEDevices(): Array;", - "mainBuggyLine": "109" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "148", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function startBLEScan(filters: Array, options?: ScanOptions): void;", - "mainBuggyLine": "148" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "162", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function stopBLEScan(): void;", - "mainBuggyLine": "162" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "244", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function startAdvertising(advertisingParams: AdvertisingParams, callback: AsyncCallback): void;", - "mainBuggyLine": "244" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "264", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function startAdvertising(advertisingParams: AdvertisingParams): Promise;", - "mainBuggyLine": "264" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "281", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function enableAdvertising(advertisingEnableParams: AdvertisingEnableParams, callback: AsyncCallback): void;", - "mainBuggyLine": "281" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "298", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function enableAdvertising(advertisingEnableParams: AdvertisingEnableParams): Promise;", - "mainBuggyLine": "298" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "315", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function disableAdvertising(advertisingDisableParams: AdvertisingDisableParams, callback: AsyncCallback): void;", - "mainBuggyLine": "315" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "332", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function disableAdvertising(advertisingDisableParams: AdvertisingDisableParams): Promise;", - "mainBuggyLine": "332" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "350", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function stopAdvertising(advertisingId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "350" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "368", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function stopAdvertising(advertisingId: number): Promise;", - "mainBuggyLine": "368" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "383", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'advertisingStateChange', callback: Callback): void;", - "mainBuggyLine": "383" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "398", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'advertisingStateChange', callback?: Callback): void;", - "mainBuggyLine": "398" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "413", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'BLEDeviceFind', callback: Callback>): void;", - "mainBuggyLine": "413" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "428", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'BLEDeviceFind', callback?: Callback>): void;", - "mainBuggyLine": "428" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "556", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "notifyCharacteristicChanged(\r\n deviceId: string,\r\n notifyCharacteristic: NotifyCharacteristic,\r\n callback: AsyncCallback\r\n ): void;", - "mainBuggyLine": "556" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "579", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "notifyCharacteristicChanged(deviceId: string, notifyCharacteristic: NotifyCharacteristic): Promise;", - "mainBuggyLine": "579" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "595", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sendResponse(serverResponse: ServerResponse): void;", - "mainBuggyLine": "595" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "717", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'descriptorRead', callback: Callback): void;", - "mainBuggyLine": "717" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "731", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'descriptorRead', callback?: Callback): void;", - "mainBuggyLine": "731" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "745", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'descriptorWrite', callback: Callback): void;", - "mainBuggyLine": "745" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "759", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'descriptorWrite', callback?: Callback): void;", - "mainBuggyLine": "759" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "827", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'BLEMtuChange', callback: Callback): void;", - "mainBuggyLine": "827" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "841", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'BLEMtuChange', callback?: Callback): void;", - "mainBuggyLine": "841" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "929", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "close(): void;", - "mainBuggyLine": "929" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "944", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getDeviceName(callback: AsyncCallback): void;", - "mainBuggyLine": "944" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "959", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getDeviceName(): Promise;", - "mainBuggyLine": "959" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1100", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readDescriptorValue(descriptor: BLEDescriptor, callback: AsyncCallback): void;", - "mainBuggyLine": "1100" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1117", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readDescriptorValue(descriptor: BLEDescriptor): Promise;", - "mainBuggyLine": "1117" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1208", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "writeDescriptorValue(descriptor: BLEDescriptor, callback: AsyncCallback): void;", - "mainBuggyLine": "1208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1225", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "writeDescriptorValue(descriptor: BLEDescriptor): Promise;", - "mainBuggyLine": "1225" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1650", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "1650" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1664", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isPrimary: boolean;", - "mainBuggyLine": "1664" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1678", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristics: Array;", - "mainBuggyLine": "1678" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1692", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "includeServices?: Array;", - "mainBuggyLine": "1692" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1724", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "1724" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1738", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "1738" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1752", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicValue: ArrayBuffer;", - "mainBuggyLine": "1752" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1766", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "descriptors: Array;", - "mainBuggyLine": "1766" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1780", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "properties?: GattProperties;", - "mainBuggyLine": "1780" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1812", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "1812" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1826", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "1826" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1840", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "descriptorUuid: string;", - "mainBuggyLine": "1840" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1854", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "descriptorValue: ArrayBuffer;", - "mainBuggyLine": "1854" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1864", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface NotifyCharacteristic", - "mainBuggyLine": "1864" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1871", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "1871" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1871", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "1871" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1878", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "1878" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1878", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "1878" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1885", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "characteristicValue: ArrayBuffer;", - "mainBuggyLine": "1885" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1885", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicValue: ArrayBuffer;", - "mainBuggyLine": "1885" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1893", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "confirm: boolean;", - "mainBuggyLine": "1893" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1893", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "confirm: boolean;", - "mainBuggyLine": "1893" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1925", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "1925" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1939", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "transId: number;", - "mainBuggyLine": "1939" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1953", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "offset: number;", - "mainBuggyLine": "1953" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1967", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "1967" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1981", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "1981" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2013", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "2013" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2027", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "transId: number;", - "mainBuggyLine": "2027" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2041", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "offset: number;", - "mainBuggyLine": "2041" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2055", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isPrepared: boolean;", - "mainBuggyLine": "2055" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2069", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "needRsp: boolean;", - "mainBuggyLine": "2069" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2083", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: ArrayBuffer;", - "mainBuggyLine": "2083" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2097", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "2097" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2111", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "2111" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2121", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface DescriptorReadRequest", - "mainBuggyLine": "2121" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2128", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "2128" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2128", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "2128" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2135", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "transId: number;", - "mainBuggyLine": "2135" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2135", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "transId: number;", - "mainBuggyLine": "2135" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2142", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "offset: number;", - "mainBuggyLine": "2142" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2142", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "offset: number;", - "mainBuggyLine": "2142" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2149", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "descriptorUuid: string;", - "mainBuggyLine": "2149" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2149", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "descriptorUuid: string;", - "mainBuggyLine": "2149" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2156", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "2156" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2156", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "2156" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2163", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "2163" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2163", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "2163" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2173", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface DescriptorWriteRequest", - "mainBuggyLine": "2173" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2180", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "2180" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2180", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "2180" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2187", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "transId: number;", - "mainBuggyLine": "2187" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2187", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "transId: number;", - "mainBuggyLine": "2187" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2194", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "offset: number;", - "mainBuggyLine": "2194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2194", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "offset: number;", - "mainBuggyLine": "2194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2201", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isPrepared: boolean;", - "mainBuggyLine": "2201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2201", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isPrepared: boolean;", - "mainBuggyLine": "2201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2208", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "needRsp: boolean;", - "mainBuggyLine": "2208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2208", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "needRsp: boolean;", - "mainBuggyLine": "2208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2215", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "value: ArrayBuffer;", - "mainBuggyLine": "2215" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2215", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: ArrayBuffer;", - "mainBuggyLine": "2215" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2222", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "descriptorUuid: string;", - "mainBuggyLine": "2222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2222", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "descriptorUuid: string;", - "mainBuggyLine": "2222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2229", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "2229" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2229", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "2229" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2236", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "2236" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2236", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "2236" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2246", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ServerResponse", - "mainBuggyLine": "2246" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2253", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "2253" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2253", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "2253" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2260", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "transId: number;", - "mainBuggyLine": "2260" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2260", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "transId: number;", - "mainBuggyLine": "2260" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2267", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "status: number;", - "mainBuggyLine": "2267" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2267", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "status: number;", - "mainBuggyLine": "2267" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2274", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "offset: number;", - "mainBuggyLine": "2274" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2274", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "offset: number;", - "mainBuggyLine": "2274" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2281", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "value: ArrayBuffer;", - "mainBuggyLine": "2281" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2281", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: ArrayBuffer;", - "mainBuggyLine": "2281" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2313", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "2313" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2327", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "state: ProfileConnectionState;", - "mainBuggyLine": "2327" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2337", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ScanResult", - "mainBuggyLine": "2337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2344", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "2344" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2344", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "2344" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2351", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "rssi: number;", - "mainBuggyLine": "2351" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2351", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rssi: number;", - "mainBuggyLine": "2351" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2358", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "data: ArrayBuffer;", - "mainBuggyLine": "2358" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2358", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "data: ArrayBuffer;", - "mainBuggyLine": "2358" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2365", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deviceName: string;", - "mainBuggyLine": "2365" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2365", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceName: string;", - "mainBuggyLine": "2365" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2372", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "connectable: boolean;", - "mainBuggyLine": "2372" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2372", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "connectable: boolean;", - "mainBuggyLine": "2372" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2408", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "interval?: number;", - "mainBuggyLine": "2408" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2426", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "txPower?: number;", - "mainBuggyLine": "2426" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2440", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "connectable?: boolean;", - "mainBuggyLine": "2440" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2472", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuids: Array;", - "mainBuggyLine": "2472" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2486", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "manufactureData: Array;", - "mainBuggyLine": "2486" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2500", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceData: Array;", - "mainBuggyLine": "2500" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2514", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "includeDeviceName?: boolean;", - "mainBuggyLine": "2514" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2524", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AdvertisingParams", - "mainBuggyLine": "2524" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2532", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "advertisingSettings: AdvertiseSetting;", - "mainBuggyLine": "2532" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2540", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "advertisingData: AdvertiseData;", - "mainBuggyLine": "2540" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2548", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "advertisingResponse?: AdvertiseData;", - "mainBuggyLine": "2548" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2558", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "duration?: number;", - "mainBuggyLine": "2558" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2568", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AdvertisingEnableParams", - "mainBuggyLine": "2568" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2576", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "advertisingId: number;", - "mainBuggyLine": "2576" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2586", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "duration?: number;", - "mainBuggyLine": "2586" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2596", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AdvertisingDisableParams", - "mainBuggyLine": "2596" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2604", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "advertisingId: number;", - "mainBuggyLine": "2604" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2614", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AdvertisingStateChangeInfo", - "mainBuggyLine": "2614" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2622", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "advertisingId: number;", - "mainBuggyLine": "2622" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2630", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "state: AdvertisingState;", - "mainBuggyLine": "2630" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2662", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "manufactureId: number;", - "mainBuggyLine": "2662" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2676", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "manufactureValue: ArrayBuffer;", - "mainBuggyLine": "2676" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2708", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "2708" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2722", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceValue: ArrayBuffer;", - "mainBuggyLine": "2722" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2732", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ScanFilter", - "mainBuggyLine": "2732" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2739", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deviceId?: string;", - "mainBuggyLine": "2739" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2739", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId?: string;", - "mainBuggyLine": "2739" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2747", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "name?: string;", - "mainBuggyLine": "2747" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2747", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name?: string;", - "mainBuggyLine": "2747" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2755", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "serviceUuid?: string;", - "mainBuggyLine": "2755" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2755", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid?: string;", - "mainBuggyLine": "2755" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2763", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "serviceUuidMask?: string;", - "mainBuggyLine": "2763" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2763", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuidMask?: string;", - "mainBuggyLine": "2763" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2771", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "serviceSolicitationUuid?: string;", - "mainBuggyLine": "2771" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2771", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceSolicitationUuid?: string;", - "mainBuggyLine": "2771" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2779", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "serviceSolicitationUuidMask?: string;", - "mainBuggyLine": "2779" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2779", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceSolicitationUuidMask?: string;", - "mainBuggyLine": "2779" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2787", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "serviceData?: ArrayBuffer;", - "mainBuggyLine": "2787" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2787", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceData?: ArrayBuffer;", - "mainBuggyLine": "2787" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2795", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "serviceDataMask?: ArrayBuffer;", - "mainBuggyLine": "2795" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2795", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceDataMask?: ArrayBuffer;", - "mainBuggyLine": "2795" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2803", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "manufactureId?: number;", - "mainBuggyLine": "2803" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2803", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "manufactureId?: number;", - "mainBuggyLine": "2803" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2811", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "manufactureData?: ArrayBuffer;", - "mainBuggyLine": "2811" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2811", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "manufactureData?: ArrayBuffer;", - "mainBuggyLine": "2811" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2819", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "manufactureDataMask?: ArrayBuffer;", - "mainBuggyLine": "2819" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2819", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "manufactureDataMask?: ArrayBuffer;", - "mainBuggyLine": "2819" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2829", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ScanOptions", - "mainBuggyLine": "2829" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2836", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "interval?: number;", - "mainBuggyLine": "2836" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2836", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "interval?: number;", - "mainBuggyLine": "2836" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2843", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dutyMode?: ScanDuty;", - "mainBuggyLine": "2843" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2843", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "dutyMode?: ScanDuty;", - "mainBuggyLine": "2843" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2850", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "matchMode?: MatchMode;", - "mainBuggyLine": "2850" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2850", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "matchMode?: MatchMode;", - "mainBuggyLine": "2850" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2857", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "phyType?: PhyType;", - "mainBuggyLine": "2857" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2857", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "phyType?: PhyType;", - "mainBuggyLine": "2857" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2889", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "write?: boolean;", - "mainBuggyLine": "2889" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2903", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "writeNoResponse?: boolean;", - "mainBuggyLine": "2903" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2917", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "read?: boolean;", - "mainBuggyLine": "2917" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2931", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "notify?: boolean;", - "mainBuggyLine": "2931" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "2945", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "indicate?: boolean;", - "mainBuggyLine": "2945" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "3001", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum ScanDuty", - "mainBuggyLine": "3001" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "3008", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCAN_MODE_LOW_POWER = 0", - "mainBuggyLine": "3008" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "3015", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCAN_MODE_BALANCED = 1", - "mainBuggyLine": "3015" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "3022", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCAN_MODE_LOW_LATENCY = 2", - "mainBuggyLine": "3022" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "3032", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum MatchMode", - "mainBuggyLine": "3032" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "3039", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MATCH_MODE_AGGRESSIVE = 1", - "mainBuggyLine": "3039" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "3046", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MATCH_MODE_STICKY = 2", - "mainBuggyLine": "3046" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "3056", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum AdvertisingState", - "mainBuggyLine": "3056" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "3063", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STARTED = 1", - "mainBuggyLine": "3063" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "3070", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ENABLED = 2", - "mainBuggyLine": "3070" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "3077", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DISABLED = 3", - "mainBuggyLine": "3077" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "3084", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STOPPED = 4", - "mainBuggyLine": "3084" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "3094", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum PhyType", - "mainBuggyLine": "3094" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "3101", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHY_LE_1M = 1", - "mainBuggyLine": "3101" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "3108", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHY_LE_ALL_SUPPORTED = 255", - "mainBuggyLine": "3108" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "622", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_characteristicRead] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'characteristicRead', callback: Callback): void;", - "mainBuggyLine": "622" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "649", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_characteristicRead] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'characteristicRead', callback?: Callback): void;", - "mainBuggyLine": "649" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "676", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_characteristicWrite] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'characteristicWrite', callback: Callback): void;", - "mainBuggyLine": "676" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "703", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_characteristicWrite] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'characteristicWrite', callback?: Callback): void;", - "mainBuggyLine": "703" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "786", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_connectionStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'connectionStateChange', callback: Callback): void;", - "mainBuggyLine": "786" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "813", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_connectionStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'connectionStateChange', callback?: Callback): void;", - "mainBuggyLine": "813" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1483", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_BLECharacteristicChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'BLECharacteristicChange', callback: Callback): void;", - "mainBuggyLine": "1483" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1510", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_BLECharacteristicChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'BLECharacteristicChange', callback?: Callback): void;", - "mainBuggyLine": "1510" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1537", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_BLEConnectionStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'BLEConnectionStateChange', callback: Callback): void;", - "mainBuggyLine": "1537" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1564", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_BLEConnectionStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'BLEConnectionStateChange', callback?: Callback): void;", - "mainBuggyLine": "1564" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1591", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_BLEMtuChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'BLEMtuChange', callback: Callback): void;", - "mainBuggyLine": "1591" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.bluetooth.ble.d.ts", - "codeContextStaerLine": "1618", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_BLEMtuChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'BLEMtuChange', callback?: Callback): void;", - "mainBuggyLine": "1618" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "47", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type ProfileConnectionState = constant.ProfileConnectionState;", - "mainBuggyLine": "47" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "56", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type ProfileId = constant.ProfileId;", - "mainBuggyLine": "56" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "66", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type ProfileUuids = constant.ProfileUuids;", - "mainBuggyLine": "66" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "75", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type MajorClass = constant.MajorClass;", - "mainBuggyLine": "75" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "84", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type MajorMinorClass = constant.MajorMinorClass;", - "mainBuggyLine": "84" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "105", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getProfileConnectionState(profileId?: ProfileId): ProfileConnectionState;", - "mainBuggyLine": "105" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "193", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function pairCredibleDevice(deviceId: string, transport: BluetoothTransport, callback: AsyncCallback): void;", - "mainBuggyLine": "193" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "215", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function pairCredibleDevice(deviceId: string, transport: BluetoothTransport): Promise;", - "mainBuggyLine": "215" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "234", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function cancelPairedDevice(deviceId: string, callback: AsyncCallback): void;", - "mainBuggyLine": "234" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "253", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function cancelPairedDevice(deviceId: string): Promise;", - "mainBuggyLine": "253" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "272", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function cancelPairingDevice(deviceId: string, callback: AsyncCallback): void;", - "mainBuggyLine": "272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "291", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function cancelPairingDevice(deviceId: string): Promise;", - "mainBuggyLine": "291" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "341", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getRemoteDeviceClass(deviceId: string): DeviceClass;", - "mainBuggyLine": "341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "355", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getLocalName(): string;", - "mainBuggyLine": "355" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "434", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setDevicePairingConfirmation(deviceId: string, accept: boolean): void;", - "mainBuggyLine": "434" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "452", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setDevicePinCode(deviceId: string, code: string, callback: AsyncCallback): void;", - "mainBuggyLine": "452" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "470", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setDevicePinCode(deviceId: string, code: string): Promise;", - "mainBuggyLine": "470" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "488", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setLocalName(name: string): void;", - "mainBuggyLine": "488" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "505", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setBluetoothScanMode(mode: ScanMode, duration: number): void;", - "mainBuggyLine": "505" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "520", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getBluetoothScanMode(): ScanMode;", - "mainBuggyLine": "520" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "589", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isBluetoothDiscovering(): boolean;", - "mainBuggyLine": "589" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "607", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getLocalProfileUuids(callback: AsyncCallback>): void;", - "mainBuggyLine": "607" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "625", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getLocalProfileUuids(): Promise>;", - "mainBuggyLine": "625" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "644", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getRemoteProfileUuids(deviceId: string, callback: AsyncCallback>): void;", - "mainBuggyLine": "644" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "663", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getRemoteProfileUuids(deviceId: string): Promise>;", - "mainBuggyLine": "663" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "682", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function connectAllowedProfiles(deviceId: string, callback: AsyncCallback): void;", - "mainBuggyLine": "682" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "701", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function connectAllowedProfiles(deviceId: string): Promise;", - "mainBuggyLine": "701" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "720", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function disconnectAllowedProfiles(deviceId: string, callback: AsyncCallback): void;", - "mainBuggyLine": "720" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "735", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getRemoteDeviceBatteryInfo(deviceId: string): Promise;", - "mainBuggyLine": "735" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "754", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getRemoteProductId(deviceId: string): string;", - "mainBuggyLine": "754" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "773", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function disconnectAllowedProfiles(deviceId: string): Promise;", - "mainBuggyLine": "773" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "821", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setRemoteDeviceType(deviceId: string, type: DeviceType): Promise;", - "mainBuggyLine": "821" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "837", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getRemoteDeviceType(deviceId: string): Promise;", - "mainBuggyLine": "837" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "909", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'discoveryResult', callback: Callback>): void;", - "mainBuggyLine": "909" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "909", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function on(type: 'discoveryResult', callback: Callback>): void;", - "mainBuggyLine": "909" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "924", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'discoveryResult', callback?: Callback>): void;", - "mainBuggyLine": "924" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "924", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function off(type: 'discoveryResult', callback?: Callback>): void;", - "mainBuggyLine": "924" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "939", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'bondStateChange', callback: Callback): void;", - "mainBuggyLine": "939" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "954", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'bondStateChange', callback?: Callback): void;", - "mainBuggyLine": "954" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "969", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'pinRequired', callback: Callback): void;", - "mainBuggyLine": "969" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "984", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'pinRequired', callback?: Callback): void;", - "mainBuggyLine": "984" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "997", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'batteryChange', callback: Callback): void;", - "mainBuggyLine": "997" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1010", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'batteryChange', callback?: Callback): void;", - "mainBuggyLine": "1010" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1019", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface BondStateParam", - "mainBuggyLine": "1019" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1026", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "1026" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1026", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "1026" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1033", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "state: BondState;", - "mainBuggyLine": "1033" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1033", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "state: BondState;", - "mainBuggyLine": "1033" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1040", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "cause: UnbondCause;", - "mainBuggyLine": "1040" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1040", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "cause: UnbondCause;", - "mainBuggyLine": "1040" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1050", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface PinRequiredParam", - "mainBuggyLine": "1050" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1057", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "1057" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1057", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "1057" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1064", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pinCode: string;", - "mainBuggyLine": "1064" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1064", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "pinCode: string;", - "mainBuggyLine": "1064" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1072", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pinType: PinType;", - "mainBuggyLine": "1072" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1072", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "pinType: PinType;", - "mainBuggyLine": "1072" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1082", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface DeviceClass", - "mainBuggyLine": "1082" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1089", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "majorClass: MajorClass;", - "mainBuggyLine": "1089" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1089", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "majorClass: MajorClass;", - "mainBuggyLine": "1089" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1096", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "majorMinorClass: MajorMinorClass;", - "mainBuggyLine": "1096" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1096", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "majorMinorClass: MajorMinorClass;", - "mainBuggyLine": "1096" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1103", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "classOfDevice: number;", - "mainBuggyLine": "1103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1103", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "classOfDevice: number;", - "mainBuggyLine": "1103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1113", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum BluetoothTransport", - "mainBuggyLine": "1113" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1120", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TRANSPORT_BR_EDR = 0", - "mainBuggyLine": "1120" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1127", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TRANSPORT_LE = 1", - "mainBuggyLine": "1127" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1137", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum ScanMode", - "mainBuggyLine": "1137" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1144", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCAN_MODE_NONE = 0", - "mainBuggyLine": "1144" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1151", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCAN_MODE_CONNECTABLE = 1", - "mainBuggyLine": "1151" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1158", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCAN_MODE_GENERAL_DISCOVERABLE = 2", - "mainBuggyLine": "1158" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1165", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCAN_MODE_LIMITED_DISCOVERABLE = 3", - "mainBuggyLine": "1165" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1172", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCAN_MODE_CONNECTABLE_GENERAL_DISCOVERABLE = 4", - "mainBuggyLine": "1172" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1179", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCAN_MODE_CONNECTABLE_LIMITED_DISCOVERABLE = 5", - "mainBuggyLine": "1179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1250", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum PinType", - "mainBuggyLine": "1250" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1258", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PIN_TYPE_ENTER_PIN_CODE = 0", - "mainBuggyLine": "1258" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1266", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PIN_TYPE_ENTER_PASSKEY = 1", - "mainBuggyLine": "1266" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1274", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PIN_TYPE_CONFIRM_PASSKEY = 2", - "mainBuggyLine": "1274" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1282", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PIN_TYPE_NO_PASSKEY_CONSENT = 3", - "mainBuggyLine": "1282" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1290", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PIN_TYPE_NOTIFY_PASSKEY = 4", - "mainBuggyLine": "1290" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1298", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PIN_TYPE_DISPLAY_PIN_CODE = 5", - "mainBuggyLine": "1298" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1306", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PIN_TYPE_OOB_CONSENT = 6", - "mainBuggyLine": "1306" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1314", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PIN_TYPE_PIN_16_DIGITS = 7", - "mainBuggyLine": "1314" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1325", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface DiscoveryResult", - "mainBuggyLine": "1325" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1333", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "1333" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1333", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "1333" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1341", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "rssi: number;", - "mainBuggyLine": "1341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1341", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rssi: number;", - "mainBuggyLine": "1341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1349", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deviceName: string;", - "mainBuggyLine": "1349" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1349", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceName: string;", - "mainBuggyLine": "1349" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1357", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deviceClass: DeviceClass;", - "mainBuggyLine": "1357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1357", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceClass: DeviceClass;", - "mainBuggyLine": "1357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1367", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface BatteryInfo", - "mainBuggyLine": "1367" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1375", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "1375" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1375", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "1375" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1383", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "batteryLevel: number;", - "mainBuggyLine": "1383" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1391", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "leftEarBatteryLevel: number;", - "mainBuggyLine": "1391" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1399", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "leftEarChargeState: DeviceChargeState;", - "mainBuggyLine": "1399" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1407", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "rightEarBatteryLevel: number;", - "mainBuggyLine": "1407" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1415", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "rightEarChargeState: DeviceChargeState;", - "mainBuggyLine": "1415" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1423", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "boxBatteryLevel: number;", - "mainBuggyLine": "1423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1431", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "boxChargeState: DeviceChargeState;", - "mainBuggyLine": "1431" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1441", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum DeviceChargeState", - "mainBuggyLine": "1441" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1448", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_NORMAL_CHARGE_NOT_CHARGED = 0", - "mainBuggyLine": "1448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1455", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_NORMAL_CHARGE_IN_CHARGING = 1", - "mainBuggyLine": "1455" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1462", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_SUPER_CHARGE_NOT_CHARGED = 2", - "mainBuggyLine": "1462" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1469", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_SUPER_CHARGE_IN_CHARGING = 3", - "mainBuggyLine": "1469" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1480", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum DeviceType", - "mainBuggyLine": "1480" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1488", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_TYPE_DEFAULT = 0", - "mainBuggyLine": "1488" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1496", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_TYPE_CAR = 1", - "mainBuggyLine": "1496" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1504", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_TYPE_HEADSET = 2", - "mainBuggyLine": "1504" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1512", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_TYPE_HEARING = 3", - "mainBuggyLine": "1512" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1520", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_TYPE_GLASSES = 4", - "mainBuggyLine": "1520" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1528", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_TYPE_WATCH = 5", - "mainBuggyLine": "1528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1536", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_TYPE_SPEAKER = 6", - "mainBuggyLine": "1536" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1544", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_TYPE_OTHERS = 7", - "mainBuggyLine": "1544" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1554", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum UnbondCause", - "mainBuggyLine": "1554" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1561", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "USER_REMOVED = 0", - "mainBuggyLine": "1561" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1568", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "REMOTE_DEVICE_DOWN = 1", - "mainBuggyLine": "1568" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1575", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUTH_FAILURE = 2", - "mainBuggyLine": "1575" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1582", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUTH_REJECTED = 3", - "mainBuggyLine": "1582" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1589", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INTERNAL_ERROR = 4", - "mainBuggyLine": "1589" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "866", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_bluetoothDeviceFind] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'bluetoothDeviceFind', callback: Callback>): void;", - "mainBuggyLine": "866" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "893", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_bluetoothDeviceFind] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'bluetoothDeviceFind', callback?: Callback>): void;", - "mainBuggyLine": "893" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "909", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_discoveryResult] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'discoveryResult', callback: Callback>): void;", - "mainBuggyLine": "909" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "924", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_discoveryResult] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'discoveryResult', callback?: Callback>): void;", - "mainBuggyLine": "924" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "997", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_batteryChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'batteryChange', callback: Callback): void;", - "mainBuggyLine": "997" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.bluetooth.connection.d.ts", - "codeContextStaerLine": "1010", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_batteryChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'batteryChange', callback?: Callback): void;", - "mainBuggyLine": "1010" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "44", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum ProfileId", - "mainBuggyLine": "44" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "51", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PROFILE_A2DP_SOURCE = 1", - "mainBuggyLine": "51" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "59", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PROFILE_HANDSFREE_AUDIO_GATEWAY = 4", - "mainBuggyLine": "59" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "67", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PROFILE_HID_HOST = 6", - "mainBuggyLine": "67" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "75", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PROFILE_PAN_NETWORK = 7", - "mainBuggyLine": "75" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum ProfileUuids", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "94", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PROFILE_UUID_HFP_AG = '0000111F-0000-1000-8000-00805F9B34FB'", - "mainBuggyLine": "94" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "102", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PROFILE_UUID_HFP_HF = '0000111E-0000-1000-8000-00805F9B34FB'", - "mainBuggyLine": "102" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "110", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PROFILE_UUID_HSP_AG = '00001112-0000-1000-8000-00805F9B34FB'", - "mainBuggyLine": "110" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "118", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PROFILE_UUID_HSP_HS = '00001108-0000-1000-8000-00805F9B34FB'", - "mainBuggyLine": "118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "126", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PROFILE_UUID_A2DP_SRC = '0000110A-0000-1000-8000-00805F9B34FB'", - "mainBuggyLine": "126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "134", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PROFILE_UUID_A2DP_SINK = '0000110B-0000-1000-8000-00805F9B34FB'", - "mainBuggyLine": "134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "142", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PROFILE_UUID_AVRCP_CT = '0000110E-0000-1000-8000-00805F9B34FB'", - "mainBuggyLine": "142" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "150", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PROFILE_UUID_AVRCP_TG = '0000110C-0000-1000-8000-00805F9B34FB'", - "mainBuggyLine": "150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "158", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PROFILE_UUID_HID = '00001124-0000-1000-8000-00805F9B34FB'", - "mainBuggyLine": "158" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "166", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PROFILE_UUID_HOGP = '00001812-0000-1000-8000-00805F9B34FB'", - "mainBuggyLine": "166" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "250", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum MajorClass", - "mainBuggyLine": "250" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "257", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MAJOR_MISC = 0x0000", - "mainBuggyLine": "257" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "264", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MAJOR_COMPUTER = 0x0100", - "mainBuggyLine": "264" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "271", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MAJOR_PHONE = 0x0200", - "mainBuggyLine": "271" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "278", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MAJOR_NETWORKING = 0x0300", - "mainBuggyLine": "278" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "285", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MAJOR_AUDIO_VIDEO = 0x0400", - "mainBuggyLine": "285" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "292", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MAJOR_PERIPHERAL = 0x0500", - "mainBuggyLine": "292" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "299", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MAJOR_IMAGING = 0x0600", - "mainBuggyLine": "299" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "306", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MAJOR_WEARABLE = 0x0700", - "mainBuggyLine": "306" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "313", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MAJOR_TOY = 0x0800", - "mainBuggyLine": "313" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "320", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MAJOR_HEALTH = 0x0900", - "mainBuggyLine": "320" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "327", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MAJOR_UNCATEGORIZED = 0x1F00", - "mainBuggyLine": "327" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "337", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum MajorMinorClass", - "mainBuggyLine": "337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "345", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMPUTER_UNCATEGORIZED = 0x0100", - "mainBuggyLine": "345" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "352", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMPUTER_DESKTOP = 0x0104", - "mainBuggyLine": "352" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "359", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMPUTER_SERVER = 0x0108", - "mainBuggyLine": "359" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "366", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMPUTER_LAPTOP = 0x010C", - "mainBuggyLine": "366" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "373", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMPUTER_HANDHELD_PC_PDA = 0x0110", - "mainBuggyLine": "373" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "380", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMPUTER_PALM_SIZE_PC_PDA = 0x0114", - "mainBuggyLine": "380" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "387", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMPUTER_WEARABLE = 0x0118", - "mainBuggyLine": "387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "394", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMPUTER_TABLET = 0x011C", - "mainBuggyLine": "394" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "402", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHONE_UNCATEGORIZED = 0x0200", - "mainBuggyLine": "402" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "409", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHONE_CELLULAR = 0x0204", - "mainBuggyLine": "409" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "416", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHONE_CORDLESS = 0x0208", - "mainBuggyLine": "416" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "423", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHONE_SMART = 0x020C", - "mainBuggyLine": "423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "430", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHONE_MODEM_OR_GATEWAY = 0x0210", - "mainBuggyLine": "430" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "437", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHONE_ISDN = 0x0214", - "mainBuggyLine": "437" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "445", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NETWORK_FULLY_AVAILABLE = 0x0300", - "mainBuggyLine": "445" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "452", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NETWORK_1_TO_17_UTILIZED = 0x0320", - "mainBuggyLine": "452" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "459", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NETWORK_17_TO_33_UTILIZED = 0x0340", - "mainBuggyLine": "459" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "466", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NETWORK_33_TO_50_UTILIZED = 0x0360", - "mainBuggyLine": "466" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "473", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NETWORK_60_TO_67_UTILIZED = 0x0380", - "mainBuggyLine": "473" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "480", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NETWORK_67_TO_83_UTILIZED = 0x03A0", - "mainBuggyLine": "480" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "487", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NETWORK_83_TO_99_UTILIZED = 0x03C0", - "mainBuggyLine": "487" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "494", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NETWORK_NO_SERVICE = 0x03E0", - "mainBuggyLine": "494" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "502", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_VIDEO_UNCATEGORIZED = 0x0400", - "mainBuggyLine": "502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "509", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_VIDEO_WEARABLE_HEADSET = 0x0404", - "mainBuggyLine": "509" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "516", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_VIDEO_HANDSFREE = 0x0408", - "mainBuggyLine": "516" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "523", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_VIDEO_MICROPHONE = 0x0410", - "mainBuggyLine": "523" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "530", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_VIDEO_LOUDSPEAKER = 0x0414", - "mainBuggyLine": "530" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "537", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_VIDEO_HEADPHONES = 0x0418", - "mainBuggyLine": "537" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "544", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_VIDEO_PORTABLE_AUDIO = 0x041C", - "mainBuggyLine": "544" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "551", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_VIDEO_CAR_AUDIO = 0x0420", - "mainBuggyLine": "551" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "558", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_VIDEO_SET_TOP_BOX = 0x0424", - "mainBuggyLine": "558" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "565", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_VIDEO_HIFI_AUDIO = 0x0428", - "mainBuggyLine": "565" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "572", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_VIDEO_VCR = 0x042C", - "mainBuggyLine": "572" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "579", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_VIDEO_VIDEO_CAMERA = 0x0430", - "mainBuggyLine": "579" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "586", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_VIDEO_CAMCORDER = 0x0434", - "mainBuggyLine": "586" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "593", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_VIDEO_VIDEO_MONITOR = 0x0438", - "mainBuggyLine": "593" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "600", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_VIDEO_VIDEO_DISPLAY_AND_LOUDSPEAKER = 0x043C", - "mainBuggyLine": "600" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "607", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_VIDEO_VIDEO_CONFERENCING = 0x0440", - "mainBuggyLine": "607" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "614", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_VIDEO_VIDEO_GAMING_TOY = 0x0448", - "mainBuggyLine": "614" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "622", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PERIPHERAL_NON_KEYBOARD_NON_POINTING = 0x0500", - "mainBuggyLine": "622" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "629", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PERIPHERAL_KEYBOARD = 0x0540", - "mainBuggyLine": "629" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "636", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PERIPHERAL_POINTING_DEVICE = 0x0580", - "mainBuggyLine": "636" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "643", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PERIPHERAL_KEYBOARD_POINTING = 0x05C0", - "mainBuggyLine": "643" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "650", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PERIPHERAL_UNCATEGORIZED = 0x0500", - "mainBuggyLine": "650" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "657", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PERIPHERAL_JOYSTICK = 0x0504", - "mainBuggyLine": "657" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "664", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PERIPHERAL_GAMEPAD = 0x0508", - "mainBuggyLine": "664" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "671", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PERIPHERAL_REMOTE_CONTROL = 0x05C0", - "mainBuggyLine": "671" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "678", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PERIPHERAL_SENSING_DEVICE = 0x0510", - "mainBuggyLine": "678" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "685", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PERIPHERAL_DIGITIZER_TABLET = 0x0514", - "mainBuggyLine": "685" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "692", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PERIPHERAL_CARD_READER = 0x0518", - "mainBuggyLine": "692" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "699", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PERIPHERAL_DIGITAL_PEN = 0x051C", - "mainBuggyLine": "699" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "706", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PERIPHERAL_SCANNER_RFID = 0x0520", - "mainBuggyLine": "706" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "713", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PERIPHERAL_GESTURAL_INPUT = 0x0522", - "mainBuggyLine": "713" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "721", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "IMAGING_UNCATEGORIZED = 0x0600", - "mainBuggyLine": "721" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "728", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "IMAGING_DISPLAY = 0x0610", - "mainBuggyLine": "728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "735", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "IMAGING_CAMERA = 0x0620", - "mainBuggyLine": "735" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "742", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "IMAGING_SCANNER = 0x0640", - "mainBuggyLine": "742" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "749", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "IMAGING_PRINTER = 0x0680", - "mainBuggyLine": "749" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "757", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WEARABLE_UNCATEGORIZED = 0x0700", - "mainBuggyLine": "757" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "764", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WEARABLE_WRIST_WATCH = 0x0704", - "mainBuggyLine": "764" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "771", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WEARABLE_PAGER = 0x0708", - "mainBuggyLine": "771" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "778", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WEARABLE_JACKET = 0x070C", - "mainBuggyLine": "778" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "785", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WEARABLE_HELMET = 0x0710", - "mainBuggyLine": "785" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "792", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WEARABLE_GLASSES = 0x0714", - "mainBuggyLine": "792" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "800", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TOY_UNCATEGORIZED = 0x0800", - "mainBuggyLine": "800" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "807", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TOY_ROBOT = 0x0804", - "mainBuggyLine": "807" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "814", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TOY_VEHICLE = 0x0808", - "mainBuggyLine": "814" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "821", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TOY_DOLL_ACTION_FIGURE = 0x080C", - "mainBuggyLine": "821" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "828", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TOY_CONTROLLER = 0x0810", - "mainBuggyLine": "828" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "835", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TOY_GAME = 0x0814", - "mainBuggyLine": "835" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "843", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HEALTH_UNCATEGORIZED = 0x0900", - "mainBuggyLine": "843" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "850", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HEALTH_BLOOD_PRESSURE = 0x0904", - "mainBuggyLine": "850" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "857", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HEALTH_THERMOMETER = 0x0908", - "mainBuggyLine": "857" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "864", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HEALTH_WEIGHING = 0x090C", - "mainBuggyLine": "864" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "871", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HEALTH_GLUCOSE = 0x0910", - "mainBuggyLine": "871" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "878", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HEALTH_PULSE_OXIMETER = 0x0914", - "mainBuggyLine": "878" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "885", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HEALTH_PULSE_RATE = 0x0918", - "mainBuggyLine": "885" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "892", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HEALTH_DATA_DISPLAY = 0x091C", - "mainBuggyLine": "892" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "899", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HEALTH_STEP_COUNTER = 0x0920", - "mainBuggyLine": "899" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "906", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HEALTH_BODY_COMPOSITION_ANALYZER = 0x0924", - "mainBuggyLine": "906" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "913", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HEALTH_PEAK_FLOW_MONITOR = 0x0928", - "mainBuggyLine": "913" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "920", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HEALTH_MEDICATION_MONITOR = 0x092C", - "mainBuggyLine": "920" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "927", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HEALTH_KNEE_PROSTHESIS = 0x0930", - "mainBuggyLine": "927" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "934", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HEALTH_ANKLE_PROSTHESIS = 0x0934", - "mainBuggyLine": "934" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "941", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HEALTH_GENERIC_HEALTH_MANAGER = 0x0938", - "mainBuggyLine": "941" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "948", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HEALTH_PERSONAL_MOBILITY_DEVICE = 0x093C", - "mainBuggyLine": "948" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "959", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum AccessAuthorization", - "mainBuggyLine": "959" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "967", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "UNKNOWN = 0", - "mainBuggyLine": "967" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "975", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ALLOWED = 1", - "mainBuggyLine": "975" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts", - "codeContextStaerLine": "983", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "REJECTED = 2", - "mainBuggyLine": "983" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "515", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface A2dpSourceProfile", - "mainBuggyLine": "515" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "588", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface HandsFreeAudioGatewayProfile", - "mainBuggyLine": "588" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1270", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "1270" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1278", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isPrimary: boolean;", - "mainBuggyLine": "1278" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1286", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristics: Array;", - "mainBuggyLine": "1286" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1294", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "includeServices?: Array;", - "mainBuggyLine": "1294" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1314", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "1314" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1322", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "1322" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1330", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicValue: ArrayBuffer;", - "mainBuggyLine": "1330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1338", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "descriptors: Array;", - "mainBuggyLine": "1338" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1358", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "1358" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1366", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "1366" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1374", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "descriptorUuid: string;", - "mainBuggyLine": "1374" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1382", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "descriptorValue: ArrayBuffer;", - "mainBuggyLine": "1382" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1402", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "1402" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1410", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "1410" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1418", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicValue: ArrayBuffer;", - "mainBuggyLine": "1418" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1427", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "confirm: boolean;", - "mainBuggyLine": "1427" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1447", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "1447" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1455", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "transId: number;", - "mainBuggyLine": "1455" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1463", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "offset: number;", - "mainBuggyLine": "1463" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1471", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "1471" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1479", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "1479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1499", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "1499" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1507", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "transId: number;", - "mainBuggyLine": "1507" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1515", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "offset: number;", - "mainBuggyLine": "1515" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1523", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isPrep: boolean;", - "mainBuggyLine": "1523" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1531", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "needRsp: boolean;", - "mainBuggyLine": "1531" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1539", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: ArrayBuffer;", - "mainBuggyLine": "1539" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1547", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "1547" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1555", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "1555" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1575", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "1575" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1583", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "transId: number;", - "mainBuggyLine": "1583" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1591", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "offset: number;", - "mainBuggyLine": "1591" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1599", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "descriptorUuid: string;", - "mainBuggyLine": "1599" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1607", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "1607" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1615", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "1615" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1635", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "1635" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1643", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "transId: number;", - "mainBuggyLine": "1643" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1651", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "offset: number;", - "mainBuggyLine": "1651" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1659", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isPrep: boolean;", - "mainBuggyLine": "1659" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1667", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "needRsp: boolean;", - "mainBuggyLine": "1667" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1675", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: ArrayBuffer;", - "mainBuggyLine": "1675" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1683", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "descriptorUuid: string;", - "mainBuggyLine": "1683" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1691", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "1691" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1699", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "1699" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1719", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "1719" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1727", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "transId: number;", - "mainBuggyLine": "1727" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1735", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "status: number;", - "mainBuggyLine": "1735" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1743", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "offset: number;", - "mainBuggyLine": "1743" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1751", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: ArrayBuffer;", - "mainBuggyLine": "1751" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1771", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "1771" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1779", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "state: ProfileConnectionState;", - "mainBuggyLine": "1779" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1799", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "1799" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1807", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rssi: number;", - "mainBuggyLine": "1807" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1815", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "data: ArrayBuffer;", - "mainBuggyLine": "1815" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1837", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "interval?: number;", - "mainBuggyLine": "1837" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1847", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "txPower?: number;", - "mainBuggyLine": "1847" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1855", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "connectable?: boolean;", - "mainBuggyLine": "1855" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1875", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuids: Array;", - "mainBuggyLine": "1875" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1883", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "manufactureData: Array;", - "mainBuggyLine": "1883" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1891", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceData: Array;", - "mainBuggyLine": "1891" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1911", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "manufactureId: number;", - "mainBuggyLine": "1911" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1919", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "manufactureValue: ArrayBuffer;", - "mainBuggyLine": "1919" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1939", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "1939" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1947", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceValue: ArrayBuffer;", - "mainBuggyLine": "1947" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1967", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId?: string;", - "mainBuggyLine": "1967" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1975", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name?: string;", - "mainBuggyLine": "1975" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "1983", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid?: string;", - "mainBuggyLine": "1983" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "2003", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "interval?: number;", - "mainBuggyLine": "2003" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "2011", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "dutyMode?: ScanDuty;", - "mainBuggyLine": "2011" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "2019", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "matchMode?: MatchMode;", - "mainBuggyLine": "2019" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "2039", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uuid: string;", - "mainBuggyLine": "2039" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "2047", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "secure: boolean;", - "mainBuggyLine": "2047" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "2055", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: SppType;", - "mainBuggyLine": "2055" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "2075", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "2075" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "2083", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "pinCode: string;", - "mainBuggyLine": "2083" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "2103", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "majorClass: MajorClass;", - "mainBuggyLine": "2103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "2111", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "majorMinorClass: MajorMinorClass;", - "mainBuggyLine": "2111" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "2119", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "classOfDevice: number;", - "mainBuggyLine": "2119" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "2139", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "2139" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "2147", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "state: BondState;", - "mainBuggyLine": "2147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "3268", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "3268" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts", - "codeContextStaerLine": "3277", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "state: ProfileConnectionState;", - "mainBuggyLine": "3277" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.hfp.d.ts", - "codeContextStaerLine": "37", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type BaseProfile = baseProfile.BaseProfile;", - "mainBuggyLine": "37" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.hfp.d.ts", - "codeContextStaerLine": "57", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface HandsFreeAudioGatewayProfile", - "mainBuggyLine": "57" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.hid.d.ts", - "codeContextStaerLine": "37", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type BaseProfile = baseProfile.BaseProfile;", - "mainBuggyLine": "37" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.hid.d.ts", - "codeContextStaerLine": "57", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface HidHostProfile", - "mainBuggyLine": "57" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.map.d.ts", - "codeContextStaerLine": "38", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type BaseProfile = baseProfile.BaseProfile;", - "mainBuggyLine": "38" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.map.d.ts", - "codeContextStaerLine": "47", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type AccessAuthorization = constant.AccessAuthorization;", - "mainBuggyLine": "47" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.map.d.ts", - "codeContextStaerLine": "67", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface MapMseProfile", - "mainBuggyLine": "67" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.pan.d.ts", - "codeContextStaerLine": "37", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type BaseProfile = baseProfile.BaseProfile;", - "mainBuggyLine": "37" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.pan.d.ts", - "codeContextStaerLine": "57", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface PanProfile", - "mainBuggyLine": "57" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.pbap.d.ts", - "codeContextStaerLine": "39", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type BaseProfile = baseProfile.BaseProfile;", - "mainBuggyLine": "39" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.pbap.d.ts", - "codeContextStaerLine": "48", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type AccessAuthorization = constant.AccessAuthorization;", - "mainBuggyLine": "48" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.pbap.d.ts", - "codeContextStaerLine": "103", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface PbapServerProfile", - "mainBuggyLine": "103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.socket.d.ts", - "codeContextStaerLine": "167", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uuid: string;", - "mainBuggyLine": "167" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.socket.d.ts", - "codeContextStaerLine": "174", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "secure: boolean;", - "mainBuggyLine": "174" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.socket.d.ts", - "codeContextStaerLine": "181", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: SppType;", - "mainBuggyLine": "181" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "1169", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface A2dpSourceProfile", - "mainBuggyLine": "1169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "1346", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface HandsFreeAudioGatewayProfile", - "mainBuggyLine": "1346" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "1487", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface HidHostProfile", - "mainBuggyLine": "1487" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "1636", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface PanProfile", - "mainBuggyLine": "1636" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3314", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "3314" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3323", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isPrimary: boolean;", - "mainBuggyLine": "3323" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3332", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristics: Array;", - "mainBuggyLine": "3332" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3341", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "includeServices?: Array;", - "mainBuggyLine": "3341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3362", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "3362" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3371", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "3371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3380", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicValue: ArrayBuffer;", - "mainBuggyLine": "3380" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3389", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "descriptors: Array;", - "mainBuggyLine": "3389" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3410", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "3410" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3419", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "3419" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3428", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "descriptorUuid: string;", - "mainBuggyLine": "3428" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3437", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "descriptorValue: ArrayBuffer;", - "mainBuggyLine": "3437" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3458", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "3458" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3467", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "3467" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3476", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicValue: ArrayBuffer;", - "mainBuggyLine": "3476" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3486", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "confirm: boolean;", - "mainBuggyLine": "3486" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3507", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "3507" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3516", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "transId: number;", - "mainBuggyLine": "3516" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3525", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "offset: number;", - "mainBuggyLine": "3525" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3534", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "3534" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3543", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "3543" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3564", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "3564" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3573", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "transId: number;", - "mainBuggyLine": "3573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3582", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "offset: number;", - "mainBuggyLine": "3582" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3591", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isPrep: boolean;", - "mainBuggyLine": "3591" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3600", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "needRsp: boolean;", - "mainBuggyLine": "3600" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3609", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: ArrayBuffer;", - "mainBuggyLine": "3609" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3618", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "3618" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3627", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "3627" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3648", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "3648" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3657", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "transId: number;", - "mainBuggyLine": "3657" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3666", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "offset: number;", - "mainBuggyLine": "3666" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3675", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "descriptorUuid: string;", - "mainBuggyLine": "3675" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3684", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "3684" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3693", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "3693" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3714", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "3714" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3723", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "transId: number;", - "mainBuggyLine": "3723" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3732", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "offset: number;", - "mainBuggyLine": "3732" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3741", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isPrep: boolean;", - "mainBuggyLine": "3741" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3750", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "needRsp: boolean;", - "mainBuggyLine": "3750" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3759", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: ArrayBuffer;", - "mainBuggyLine": "3759" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3768", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "descriptorUuid: string;", - "mainBuggyLine": "3768" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3777", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "characteristicUuid: string;", - "mainBuggyLine": "3777" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3786", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "3786" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3807", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "3807" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3816", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "transId: number;", - "mainBuggyLine": "3816" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3825", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "status: number;", - "mainBuggyLine": "3825" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3834", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "offset: number;", - "mainBuggyLine": "3834" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3843", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: ArrayBuffer;", - "mainBuggyLine": "3843" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3864", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "3864" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3873", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "state: ProfileConnectionState;", - "mainBuggyLine": "3873" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3894", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "3894" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3903", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rssi: number;", - "mainBuggyLine": "3903" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3912", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "data: ArrayBuffer;", - "mainBuggyLine": "3912" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3935", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "interval?: number;", - "mainBuggyLine": "3935" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3946", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "txPower?: number;", - "mainBuggyLine": "3946" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3955", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "connectable?: boolean;", - "mainBuggyLine": "3955" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3976", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuids: Array;", - "mainBuggyLine": "3976" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3985", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "manufactureData: Array;", - "mainBuggyLine": "3985" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "3994", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceData: Array;", - "mainBuggyLine": "3994" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4015", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "manufactureId: number;", - "mainBuggyLine": "4015" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4024", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "manufactureValue: ArrayBuffer;", - "mainBuggyLine": "4024" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4045", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid: string;", - "mainBuggyLine": "4045" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4054", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceValue: ArrayBuffer;", - "mainBuggyLine": "4054" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4075", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId?: string;", - "mainBuggyLine": "4075" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4085", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name?: string;", - "mainBuggyLine": "4085" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4095", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuid?: string;", - "mainBuggyLine": "4095" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4105", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceUuidMask?: string;", - "mainBuggyLine": "4105" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4115", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceSolicitationUuid?: string;", - "mainBuggyLine": "4115" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4125", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceSolicitationUuidMask?: string;", - "mainBuggyLine": "4125" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4135", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceData?: ArrayBuffer;", - "mainBuggyLine": "4135" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4145", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serviceDataMask?: ArrayBuffer;", - "mainBuggyLine": "4145" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4155", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "manufactureId?: number;", - "mainBuggyLine": "4155" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4165", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "manufactureData?: ArrayBuffer;", - "mainBuggyLine": "4165" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4175", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "manufactureDataMask?: ArrayBuffer;", - "mainBuggyLine": "4175" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4196", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "interval?: number;", - "mainBuggyLine": "4196" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4205", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "dutyMode?: ScanDuty;", - "mainBuggyLine": "4205" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4214", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "matchMode?: MatchMode;", - "mainBuggyLine": "4214" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4235", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uuid: string;", - "mainBuggyLine": "4235" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4244", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "secure: boolean;", - "mainBuggyLine": "4244" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4253", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: SppType;", - "mainBuggyLine": "4253" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4274", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "4274" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4283", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "pinCode: string;", - "mainBuggyLine": "4283" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4304", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "majorClass: MajorClass;", - "mainBuggyLine": "4304" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4313", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "majorMinorClass: MajorMinorClass;", - "mainBuggyLine": "4313" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4322", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "classOfDevice: number;", - "mainBuggyLine": "4322" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4343", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "4343" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4352", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "state: BondState;", - "mainBuggyLine": "4352" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4373", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "4373" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts", - "codeContextStaerLine": "4383", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "state: ProfileConnectionState;", - "mainBuggyLine": "4383" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.buffer.d.ts", - "codeContextStaerLine": "67", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type BufferEncoding =\n | 'ascii'\n | 'utf8'\n | 'utf-8'\n | 'utf16le'\n | 'ucs2'\n | 'ucs-2'\n | 'base64'\n | 'base64url'\n | 'latin1'\n | 'binary'\n | 'hex';", - "mainBuggyLine": "67" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.buffer.d.ts", - "codeContextStaerLine": "100", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface TypedArray", - "mainBuggyLine": "100" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.buffer.d.ts", - "codeContextStaerLine": "743", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length: number;", - "mainBuggyLine": "743" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.buffer.d.ts", - "codeContextStaerLine": "769", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "buffer: ArrayBuffer;", - "mainBuggyLine": "769" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.buffer.d.ts", - "codeContextStaerLine": "795", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "byteOffset: number;", - "mainBuggyLine": "795" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.buffer.d.ts", - "codeContextStaerLine": "3390", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "size: number;", - "mainBuggyLine": "3390" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.buffer.d.ts", - "codeContextStaerLine": "3413", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: string;", - "mainBuggyLine": "3413" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "269", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum ApplicationFlag", - "mainBuggyLine": "269" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "278", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GET_APPLICATION_INFO_DEFAULT = 0x00000000", - "mainBuggyLine": "278" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "286", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GET_APPLICATION_INFO_WITH_PERMISSION = 0x00000001", - "mainBuggyLine": "286" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "294", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GET_APPLICATION_INFO_WITH_METADATA = 0x00000002", - "mainBuggyLine": "294" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "302", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GET_APPLICATION_INFO_WITH_DISABLE = 0x00000004", - "mainBuggyLine": "302" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "313", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum AbilityFlag", - "mainBuggyLine": "313" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "322", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GET_ABILITY_INFO_DEFAULT = 0x00000000", - "mainBuggyLine": "322" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "330", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GET_ABILITY_INFO_WITH_PERMISSION = 0x00000001", - "mainBuggyLine": "330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "338", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GET_ABILITY_INFO_WITH_APPLICATION = 0x00000002", - "mainBuggyLine": "338" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "346", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GET_ABILITY_INFO_WITH_METADATA = 0x00000004", - "mainBuggyLine": "346" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "354", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GET_ABILITY_INFO_WITH_DISABLE = 0x00000008", - "mainBuggyLine": "354" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "369", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GET_ABILITY_INFO_ONLY_SYSTEM_APP = 0x00000010", - "mainBuggyLine": "369" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "377", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GET_ABILITY_INFO_WITH_APP_LINKING = 0x00000040", - "mainBuggyLine": "377" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "385", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GET_ABILITY_INFO_WITH_SKILL = 0x00000080", - "mainBuggyLine": "385" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "396", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum ExtensionAbilityFlag", - "mainBuggyLine": "396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "405", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GET_EXTENSION_ABILITY_INFO_DEFAULT = 0x00000000", - "mainBuggyLine": "405" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "413", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GET_EXTENSION_ABILITY_INFO_WITH_PERMISSION = 0x00000001", - "mainBuggyLine": "413" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "421", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GET_EXTENSION_ABILITY_INFO_WITH_APPLICATION = 0x00000002", - "mainBuggyLine": "421" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "429", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GET_EXTENSION_ABILITY_INFO_WITH_METADATA = 0x00000004", - "mainBuggyLine": "429" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "437", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GET_EXTENSION_ABILITY_INFO_WITH_SKILL = 0x00000010", - "mainBuggyLine": "437" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "477", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WORK_SCHEDULER = 1", - "mainBuggyLine": "477" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "485", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INPUT_METHOD = 2", - "mainBuggyLine": "485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "493", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SERVICE = 3", - "mainBuggyLine": "493" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "501", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ACCESSIBILITY = 4", - "mainBuggyLine": "501" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "509", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DATA_SHARE = 5", - "mainBuggyLine": "509" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "517", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FILE_SHARE = 6", - "mainBuggyLine": "517" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "525", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STATIC_SUBSCRIBER = 7", - "mainBuggyLine": "525" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "533", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WALLPAPER = 8", - "mainBuggyLine": "533" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "541", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "BACKUP = 9", - "mainBuggyLine": "541" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "549", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WINDOW = 10", - "mainBuggyLine": "549" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "557", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ENTERPRISE_ADMIN = 11", - "mainBuggyLine": "557" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "565", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "THUMBNAIL = 13", - "mainBuggyLine": "565" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "573", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PREVIEW = 14", - "mainBuggyLine": "573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "581", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PRINT = 15", - "mainBuggyLine": "581" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "589", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SHARE = 16", - "mainBuggyLine": "589" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "597", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PUSH = 17", - "mainBuggyLine": "597" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "605", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DRIVER = 18", - "mainBuggyLine": "605" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "613", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ACTION = 19", - "mainBuggyLine": "613" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "621", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ADS_SERVICE = 20", - "mainBuggyLine": "621" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "629", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EMBEDDED_UI = 21", - "mainBuggyLine": "629" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "637", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INSIGHT_INTENT_UI = 22", - "mainBuggyLine": "637" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "645", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "UNSPECIFIED = 255", - "mainBuggyLine": "645" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "850", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum AbilityType", - "mainBuggyLine": "850" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "858", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PAGE = 1", - "mainBuggyLine": "858" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "867", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SERVICE = 2", - "mainBuggyLine": "867" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "876", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DATA = 3", - "mainBuggyLine": "876" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1253", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum ProfileType", - "mainBuggyLine": "1253" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1261", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INTENT_PROFILE = 1", - "mainBuggyLine": "1261" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1272", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum AppDistributionType", - "mainBuggyLine": "1272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1280", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "APP_GALLERY = 1", - "mainBuggyLine": "1280" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1289", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ENTERPRISE = 2", - "mainBuggyLine": "1289" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1299", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ENTERPRISE_NORMAL = 3", - "mainBuggyLine": "1299" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1309", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ENTERPRISE_MDM = 4", - "mainBuggyLine": "1309" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1318", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OS_INTEGRATION = 5", - "mainBuggyLine": "1318" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1327", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CROWDTESTING = 6", - "mainBuggyLine": "1327" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1336", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NONE = 7", - "mainBuggyLine": "1336" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1346", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum MultiAppModeType", - "mainBuggyLine": "1346" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1353", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "UNSPECIFIED = 0", - "mainBuggyLine": "1353" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1360", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MULTI_INSTANCE = 1", - "mainBuggyLine": "1360" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1367", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "APP_CLONE = 2", - "mainBuggyLine": "1367" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1449", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getBundleInfo(bundleName: string, bundleFlags: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1449" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1469", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getBundleInfo(bundleName: string,\r\n bundleFlags: number, userId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1469" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1490", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getBundleInfo(bundleName: string, bundleFlags: number, userId?: number): Promise;", - "mainBuggyLine": "1490" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1508", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getApplicationInfo(bundleName: string, appFlags: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1508" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1528", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getApplicationInfo(bundleName: string,\r\n appFlags: number, userId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1549", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getApplicationInfo(bundleName: string, appFlags: number, userId?: number): Promise;", - "mainBuggyLine": "1549" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1564", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAllBundleInfo(bundleFlags: number, callback: AsyncCallback>): void;", - "mainBuggyLine": "1564" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1581", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAllBundleInfo(bundleFlags: number, userId: number, callback: AsyncCallback>): void;", - "mainBuggyLine": "1581" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1598", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAllBundleInfo(bundleFlags: number, userId?: number): Promise>;", - "mainBuggyLine": "1598" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1613", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAllApplicationInfo(appFlags: number, callback: AsyncCallback>): void;", - "mainBuggyLine": "1613" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1630", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAllApplicationInfo(appFlags: number,\r\n userId: number, callback: AsyncCallback>): void;", - "mainBuggyLine": "1630" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1648", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAllApplicationInfo(appFlags: number, userId?: number): Promise>;", - "mainBuggyLine": "1648" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1669", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryAbilityInfo(want: Want, abilityFlags: number, callback: AsyncCallback>): void;", - "mainBuggyLine": "1669" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1692", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryAbilityInfo(want: Want,\r\n abilityFlags: number, userId: number, callback: AsyncCallback>): void;", - "mainBuggyLine": "1692" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1716", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryAbilityInfo(want: Want, abilityFlags: number, userId?: number): Promise>;", - "mainBuggyLine": "1716" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1739", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryAbilityInfo(wants: Array, abilityFlags: number, userId?: number): Promise>;", - "mainBuggyLine": "1739" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1762", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryAbilityInfoSync(want: Want, abilityFlags: number, userId?: number): Array;", - "mainBuggyLine": "1762" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1784", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryExtensionAbilityInfo(want: Want, extensionAbilityType: ExtensionAbilityType,\r\n extensionAbilityFlags: number, callback: AsyncCallback>): void;", - "mainBuggyLine": "1784" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1809", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryExtensionAbilityInfo(want: Want, extensionAbilityType: ExtensionAbilityType,\r\n extensionAbilityFlags: number, userId: number, callback: AsyncCallback>): void;", - "mainBuggyLine": "1809" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1834", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryExtensionAbilityInfo(want: Want, extensionAbilityType: ExtensionAbilityType,\r\n extensionAbilityFlags: number, userId?: number): Promise>;", - "mainBuggyLine": "1834" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1859", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryExtensionAbilityInfoSync(want: Want, extensionAbilityType: ExtensionAbilityType,\r\n extensionAbilityFlags: number, userId?: number): Array;", - "mainBuggyLine": "1859" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1884", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryExtensionAbilityInfoSync(want: Want, extensionAbilityType: string,\r\n extensionAbilityFlags: number, userId?: number): Array;", - "mainBuggyLine": "1884" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1906", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryExtensionAbilityInfoSync(extensionAbilityType: string, extensionAbilityFlags: number,\r\n userId?: number): Array;", - "mainBuggyLine": "1906" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1923", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getBundleNameByUid(uid: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1923" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1939", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getBundleNameByUid(uid: number): Promise;", - "mainBuggyLine": "1939" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1955", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getBundleNameByUidSync(uid: number): string;", - "mainBuggyLine": "1955" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1973", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getBundleArchiveInfo(hapFilePath: string, bundleFlags: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1973" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "1991", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getBundleArchiveInfo(hapFilePath: string, bundleFlags: number): Promise;", - "mainBuggyLine": "1991" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2009", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getBundleArchiveInfoSync(hapFilePath: string, bundleFlags: number): BundleInfo;", - "mainBuggyLine": "2009" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2026", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function cleanBundleCacheFiles(bundleName: string, callback: AsyncCallback): void;", - "mainBuggyLine": "2026" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2043", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function cleanBundleCacheFiles(bundleName: string): Promise;", - "mainBuggyLine": "2043" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2062", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setApplicationEnabled(bundleName: string, appIndex: number, isEnabled: boolean): Promise;", - "mainBuggyLine": "2062" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2079", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setApplicationEnabled(bundleName: string, isEnabled: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "2079" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2096", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setApplicationEnabled(bundleName: string, isEnabled: boolean): Promise;", - "mainBuggyLine": "2096" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2112", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setApplicationEnabledSync(bundleName: string, isEnabled: boolean): void;", - "mainBuggyLine": "2112" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2132", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setAbilityEnabled(info: AbilityInfo, appIndex: number, isEnabled: boolean): Promise;", - "mainBuggyLine": "2132" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2150", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setAbilityEnabled(info: AbilityInfo, isEnabled: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "2150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2168", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setAbilityEnabled(info: AbilityInfo, isEnabled: boolean): Promise;", - "mainBuggyLine": "2168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2185", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setAbilityEnabledSync(info: AbilityInfo, isEnabled: boolean): void;", - "mainBuggyLine": "2185" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2201", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isApplicationEnabled(bundleName: string, appIndex: number): Promise;", - "mainBuggyLine": "2201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2215", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isApplicationEnabled(bundleName: string, callback: AsyncCallback): void;", - "mainBuggyLine": "2215" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2229", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isApplicationEnabled(bundleName: string): Promise;", - "mainBuggyLine": "2229" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2243", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isApplicationEnabledSync(bundleName: string): boolean;", - "mainBuggyLine": "2243" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2260", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isAbilityEnabled(info: AbilityInfo, appIndex: number): Promise;", - "mainBuggyLine": "2260" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2275", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isAbilityEnabled(info: AbilityInfo, callback: AsyncCallback): void;", - "mainBuggyLine": "2275" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2290", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isAbilityEnabled(info: AbilityInfo): Promise;", - "mainBuggyLine": "2290" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2305", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isAbilityEnabledSync(info: AbilityInfo): boolean;", - "mainBuggyLine": "2305" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2326", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getLaunchWantForBundle(bundleName: string, userId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "2326" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2345", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getLaunchWantForBundle(bundleName: string, callback: AsyncCallback): void;", - "mainBuggyLine": "2345" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2366", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getLaunchWantForBundle(bundleName: string, userId?: number): Promise;", - "mainBuggyLine": "2366" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2387", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getLaunchWantForBundleSync(bundleName: string, userId?: number): Want;", - "mainBuggyLine": "2387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2607", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getPermissionDef(permissionName: string, callback: AsyncCallback): void;", - "mainBuggyLine": "2607" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2623", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getPermissionDef(permissionName: string): Promise;", - "mainBuggyLine": "2623" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2639", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getPermissionDefSync(permissionName: string): PermissionDef;", - "mainBuggyLine": "2639" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2662", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAbilityLabel(bundleName: string, moduleName: string, abilityName: string, callback: AsyncCallback): void;", - "mainBuggyLine": "2662" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2685", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAbilityLabel(bundleName: string, moduleName: string, abilityName: string): Promise;", - "mainBuggyLine": "2685" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2708", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAbilityLabelSync(bundleName: string, moduleName: string, abilityName: string): string;", - "mainBuggyLine": "2708" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2728", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getApplicationInfoSync(bundleName: string, applicationFlags: number, userId: number): ApplicationInfo;", - "mainBuggyLine": "2728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2746", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getApplicationInfoSync(bundleName: string, applicationFlags: number): ApplicationInfo;", - "mainBuggyLine": "2746" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2766", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getBundleInfoSync(bundleName: string, bundleFlags: number, userId: number): BundleInfo;", - "mainBuggyLine": "2766" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2784", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getBundleInfoSync(bundleName: string, bundleFlags: number): BundleInfo;", - "mainBuggyLine": "2784" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2797", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAllSharedBundleInfo(callback: AsyncCallback>): void;", - "mainBuggyLine": "2797" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2810", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAllSharedBundleInfo(): Promise>;", - "mainBuggyLine": "2810" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2828", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getSharedBundleInfo(bundleName: string, moduleName: string, callback: AsyncCallback>): void;", - "mainBuggyLine": "2828" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2846", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getSharedBundleInfo(bundleName: string, moduleName: string): Promise>;", - "mainBuggyLine": "2846" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2863", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAppProvisionInfo(bundleName: string, callback: AsyncCallback): void;", - "mainBuggyLine": "2863" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2882", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAppProvisionInfo(bundleName: string, userId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "2882" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2901", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAppProvisionInfo(bundleName: string, userId?: number): Promise;", - "mainBuggyLine": "2901" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2920", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAppProvisionInfoSync(bundleName: string, userId?: number): AppProvisionInfo;", - "mainBuggyLine": "2920" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2936", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getSpecifiedDistributionType(bundleName: string): string;", - "mainBuggyLine": "2936" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2953", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAdditionalInfo(bundleName: string): string;", - "mainBuggyLine": "2953" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "2995", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getJsonProfile(profileType: ProfileType, bundleName: string, moduleName?: string, userId?: number): string;", - "mainBuggyLine": "2995" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3012", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getExtResource(bundleName: string): Promise>;", - "mainBuggyLine": "3012" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3031", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function enableDynamicIcon(bundleName: string, moduleName: string): Promise;", - "mainBuggyLine": "3031" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3031", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function enableDynamicIcon(bundleName: string, moduleName: string): Promise;", - "mainBuggyLine": "3031" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3048", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function disableDynamicIcon(bundleName: string): Promise;", - "mainBuggyLine": "3048" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3048", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function disableDynamicIcon(bundleName: string): Promise;", - "mainBuggyLine": "3048" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3065", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getDynamicIcon(bundleName: string): Promise;", - "mainBuggyLine": "3065" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3080", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function verifyAbc(abcPaths: Array, deleteOriginalFiles: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "3080" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3095", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function verifyAbc(abcPaths: Array, deleteOriginalFiles: boolean): Promise;", - "mainBuggyLine": "3095" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3108", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getRecoverableApplicationInfo(callback: AsyncCallback>): void;", - "mainBuggyLine": "3108" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3121", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getRecoverableApplicationInfo(): Promise>;", - "mainBuggyLine": "3121" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3139", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setAdditionalInfo(bundleName: string, additionalInfo: string): void;", - "mainBuggyLine": "3139" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3153", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function deleteAbc(abcPath: string): Promise;", - "mainBuggyLine": "3153" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3180", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAllPreinstalledApplicationInfo(): Promise>;", - "mainBuggyLine": "3180" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3197", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAllBundleInfoByDeveloperId(developerId: string): Array;", - "mainBuggyLine": "3197" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3212", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getDeveloperIds(appDistributionType?: number): Array;", - "mainBuggyLine": "3212" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3229", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function switchUninstallState(bundleName: string, state: boolean): void;", - "mainBuggyLine": "3229" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3229", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function switchUninstallState(bundleName: string, state: boolean): void;", - "mainBuggyLine": "3229" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3250", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAppCloneBundleInfo(bundleName: string, appIndex: number, bundleFlags: number, userId?: number): Promise;", - "mainBuggyLine": "3250" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3269", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAllAppCloneBundleInfo(bundleName: string, bundleFlags: number, userId?: number): Promise>;", - "mainBuggyLine": "3269" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3285", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAppCloneIdentity(uid: number): Promise;", - "mainBuggyLine": "3285" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3414", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type AppCloneIdentity = _BundleInfo.AppCloneIdentity;", - "mainBuggyLine": "3414" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3536", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type PermissionDef = _PermissionDef;", - "mainBuggyLine": "3536" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3563", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type SharedBundleInfo = _SharedBundleInfo;", - "mainBuggyLine": "3563" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3573", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type AppProvisionInfo = _AppProvisionInfo.AppProvisionInfo;", - "mainBuggyLine": "3573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3583", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type Validity = _AppProvisionInfo.Validity;", - "mainBuggyLine": "3583" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3593", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type RecoverableApplicationInfo = _RecoverableApplicationInfo;", - "mainBuggyLine": "3593" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts", - "codeContextStaerLine": "3603", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type PreinstalledApplicationInfo = _PreinstalledApplicationInfo;", - "mainBuggyLine": "3603" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleMonitor.d.ts", - "codeContextStaerLine": "68", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type BundleChangedEvent = 'add' | 'update' | 'remove';", - "mainBuggyLine": "68" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.d.ts", - "codeContextStaerLine": "339", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "userId?: number;", - "mainBuggyLine": "339" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.distributedBundleManager.d.ts", - "codeContextStaerLine": "208", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type RemoteAbilityInfo = _RemoteAbilityInfo;", - "mainBuggyLine": "208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.freeInstall.d.ts", - "codeContextStaerLine": "264", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type DispatchInfo = _DispatchInfo;", - "mainBuggyLine": "264" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.freeInstall.d.ts", - "codeContextStaerLine": "273", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type BundlePackInfo = _PackInfo.BundlePackInfo;", - "mainBuggyLine": "273" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.freeInstall.d.ts", - "codeContextStaerLine": "282", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type PackageConfig = _PackInfo.PackageConfig;", - "mainBuggyLine": "282" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.freeInstall.d.ts", - "codeContextStaerLine": "291", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type PackageSummary = _PackInfo.PackageSummary;", - "mainBuggyLine": "291" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.freeInstall.d.ts", - "codeContextStaerLine": "300", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type BundleConfigInfo = _PackInfo.BundleConfigInfo;", - "mainBuggyLine": "300" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.freeInstall.d.ts", - "codeContextStaerLine": "309", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ExtensionAbility = _PackInfo.ExtensionAbility;", - "mainBuggyLine": "309" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.freeInstall.d.ts", - "codeContextStaerLine": "318", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ModuleConfigInfo = _PackInfo.ModuleConfigInfo;", - "mainBuggyLine": "318" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.freeInstall.d.ts", - "codeContextStaerLine": "327", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ModuleDistroInfo = _PackInfo.ModuleDistroInfo;", - "mainBuggyLine": "327" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.freeInstall.d.ts", - "codeContextStaerLine": "336", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ModuleAbilityInfo = _PackInfo.ModuleAbilityInfo;", - "mainBuggyLine": "336" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.freeInstall.d.ts", - "codeContextStaerLine": "345", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type AbilityFormInfo = _PackInfo.AbilityFormInfo;", - "mainBuggyLine": "345" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.freeInstall.d.ts", - "codeContextStaerLine": "354", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type Version = _PackInfo.Version;", - "mainBuggyLine": "354" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.freeInstall.d.ts", - "codeContextStaerLine": "363", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ApiVersion = _PackInfo.ApiVersion;", - "mainBuggyLine": "363" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.innerBundleManager.d.ts", - "codeContextStaerLine": "192", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type BundleStatusCallback = _BundleStatusCallback;", - "mainBuggyLine": "192" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.installer.d.ts", - "codeContextStaerLine": "885", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [2] [param] tag is incorrect. Please check if it matches the [2] parameter name.", - "language": "ts", - "mainBuggyCode": "removeExtResource(bundleName: string, moduleNames: Array): Promise;", - "mainBuggyLine": "885" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.installer.d.ts", - "codeContextStaerLine": "924", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "createAppClone(bundleName: string, createAppCloneParam?: CreateAppCloneParam): Promise;", - "mainBuggyLine": "924" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.installer.d.ts", - "codeContextStaerLine": "944", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "destroyAppClone(bundleName: string, appIndex: number, userId?: number): Promise;", - "mainBuggyLine": "944" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.installer.d.ts", - "codeContextStaerLine": "963", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "moduleName: string;", - "mainBuggyLine": "963" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.installer.d.ts", - "codeContextStaerLine": "972", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "hashValue: string;", - "mainBuggyLine": "972" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.installer.d.ts", - "codeContextStaerLine": "1054", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "userId?: number;", - "mainBuggyLine": "1054" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.installer.d.ts", - "codeContextStaerLine": "1063", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "installFlag?: number;", - "mainBuggyLine": "1063" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.installer.d.ts", - "codeContextStaerLine": "1072", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isKeepData?: boolean;", - "mainBuggyLine": "1072" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.installer.d.ts", - "codeContextStaerLine": "1081", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "hashParams?: Array;", - "mainBuggyLine": "1081" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.installer.d.ts", - "codeContextStaerLine": "1090", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "crowdtestDeadline?: number;", - "mainBuggyLine": "1090" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.installer.d.ts", - "codeContextStaerLine": "1099", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "sharedBundleDirPaths?: Array;", - "mainBuggyLine": "1099" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.installer.d.ts", - "codeContextStaerLine": "1108", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "specifiedDistributionType?: string;", - "mainBuggyLine": "1108" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.installer.d.ts", - "codeContextStaerLine": "1117", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "additionalInfo?: string;", - "mainBuggyLine": "1117" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.installer.d.ts", - "codeContextStaerLine": "1157", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName: string;", - "mainBuggyLine": "1157" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.installer.d.ts", - "codeContextStaerLine": "1166", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "versionCode?: number;", - "mainBuggyLine": "1166" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.launcherBundleManager.d.ts", - "codeContextStaerLine": "194", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function startShortcut(shortcutInfo: ShortcutInfo, options?: StartOptions): Promise;", - "mainBuggyLine": "194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.launcherBundleManager.d.ts", - "codeContextStaerLine": "203", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type LauncherAbilityInfo = _LauncherAbilityInfo;", - "mainBuggyLine": "203" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.launcherBundleManager.d.ts", - "codeContextStaerLine": "212", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ShortcutInfo = _ShortcutInfo;", - "mainBuggyLine": "212" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.launcherBundleManager.d.ts", - "codeContextStaerLine": "220", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ShortcutWant = _ShortcutWant;", - "mainBuggyLine": "220" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.overlay.d.ts", - "codeContextStaerLine": "284", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type OverlayModuleInfo = _OverlayModuleInfo.OverlayModuleInfo;", - "mainBuggyLine": "284" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundleState.d.ts", - "codeContextStaerLine": "53", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "id: number;", - "mainBuggyLine": "53" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundleState.d.ts", - "codeContextStaerLine": "61", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityInFgTotalTime?: number;", - "mainBuggyLine": "61" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundleState.d.ts", - "codeContextStaerLine": "69", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityPrevAccessTime?: number;", - "mainBuggyLine": "69" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundleState.d.ts", - "codeContextStaerLine": "77", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityPrevSeenTime?: number;", - "mainBuggyLine": "77" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundleState.d.ts", - "codeContextStaerLine": "85", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilitySeenTotalTime?: number;", - "mainBuggyLine": "85" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundleState.d.ts", - "codeContextStaerLine": "93", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName?: string;", - "mainBuggyLine": "93" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundleState.d.ts", - "codeContextStaerLine": "101", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fgAbilityAccessTotalTime?: number;", - "mainBuggyLine": "101" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundleState.d.ts", - "codeContextStaerLine": "109", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fgAbilityPrevAccessTime?: number;", - "mainBuggyLine": "109" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundleState.d.ts", - "codeContextStaerLine": "118", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "infosBeginTime?: number;", - "mainBuggyLine": "118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundleState.d.ts", - "codeContextStaerLine": "127", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "infosEndTime?: number;", - "mainBuggyLine": "127" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundleState.d.ts", - "codeContextStaerLine": "157", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "appUsagePriorityGroup?: number;", - "mainBuggyLine": "157" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundleState.d.ts", - "codeContextStaerLine": "165", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName?: string;", - "mainBuggyLine": "165" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundleState.d.ts", - "codeContextStaerLine": "173", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "indexOfLink?: string;", - "mainBuggyLine": "173" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundleState.d.ts", - "codeContextStaerLine": "181", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "nameOfClass?: string;", - "mainBuggyLine": "181" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundleState.d.ts", - "codeContextStaerLine": "189", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "stateOccurredTime?: number;", - "mainBuggyLine": "189" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundleState.d.ts", - "codeContextStaerLine": "197", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "stateType?: number;", - "mainBuggyLine": "197" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createCalendar(calendarAccount: CalendarAccount): Promise;", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "100", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createCalendar(calendarAccount: CalendarAccount, callback: AsyncCallback): void;", - "mainBuggyLine": "100" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "114", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deleteCalendar(calendar: Calendar): Promise;", - "mainBuggyLine": "114" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "128", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deleteCalendar(calendar: Calendar, callback: AsyncCallback): void;", - "mainBuggyLine": "128" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "220", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAllCalendars(): Promise;", - "mainBuggyLine": "220" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "233", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAllCalendars(callback: AsyncCallback): void;", - "mainBuggyLine": "233" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "319", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addEvents(events: Event[]): Promise;", - "mainBuggyLine": "319" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "328", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addEvents(events: Event[], callback: AsyncCallback): void;", - "mainBuggyLine": "328" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "337", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deleteEvent(id: number): Promise;", - "mainBuggyLine": "337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "346", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deleteEvent(id: number, callback: AsyncCallback): void;", - "mainBuggyLine": "346" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "355", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deleteEvents(ids: number[]): Promise;", - "mainBuggyLine": "355" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "364", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deleteEvents(ids: number[], callback: AsyncCallback): void;", - "mainBuggyLine": "364" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "373", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "updateEvent(event: Event): Promise;", - "mainBuggyLine": "373" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "382", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "updateEvent(event: Event, callback: AsyncCallback): void;", - "mainBuggyLine": "382" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "392", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getEvents(eventFilter?: EventFilter, eventKey?: (keyof Event)[]): Promise;", - "mainBuggyLine": "392" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "402", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getEvents(eventFilter: EventFilter, eventKey: (keyof Event)[], callback: AsyncCallback):void;", - "mainBuggyLine": "402" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "410", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getEvents(callback: AsyncCallback):void;", - "mainBuggyLine": "410" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "418", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getConfig(): CalendarConfig;", - "mainBuggyLine": "418" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "427", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setConfig(config: CalendarConfig): Promise;", - "mainBuggyLine": "427" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "436", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setConfig(config: CalendarConfig, callback: AsyncCallback): void;", - "mainBuggyLine": "436" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "444", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAccount(): CalendarAccount;", - "mainBuggyLine": "444" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "515", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface CalendarConfig", - "mainBuggyLine": "515" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "522", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableReminder?: boolean;", - "mainBuggyLine": "522" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "530", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "color?: number | string;", - "mainBuggyLine": "530" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "897", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class EventFilter", - "mainBuggyLine": "897" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "905", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static filterById(ids: number[]): EventFilter;", - "mainBuggyLine": "905" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "915", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static filterByTime(start: number, end: number): EventFilter;", - "mainBuggyLine": "915" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts", - "codeContextStaerLine": "924", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static filterByTitle(title: string): EventFilter;", - "mainBuggyLine": "924" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "161", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function publishAsUser(event: string, userId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "182", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function publishAsUser(\n event: string,\n userId: number,\n options: CommonEventPublishData,\n callback: AsyncCallback\n ): void;", - "mainBuggyLine": "182" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "342", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function removeStickyCommonEvent(event: string, callback: AsyncCallback): void;", - "mainBuggyLine": "342" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "361", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function removeStickyCommonEvent(event: string): Promise;", - "mainBuggyLine": "361" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "378", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setStaticSubscriberState(enable: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "378" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "395", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setStaticSubscriberState(enable: boolean): Promise;", - "mainBuggyLine": "395" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "413", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setStaticSubscriberState(enable: boolean, events?: Array): Promise;", - "mainBuggyLine": "413" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "438", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BOOT_COMPLETED = 'usual.event.BOOT_COMPLETED'", - "mainBuggyLine": "438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "446", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_LOCKED_BOOT_COMPLETED = 'usual.event.LOCKED_BOOT_COMPLETED'", - "mainBuggyLine": "446" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "454", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_SHUTDOWN = 'usual.event.SHUTDOWN'", - "mainBuggyLine": "454" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "462", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BATTERY_CHANGED = 'usual.event.BATTERY_CHANGED'", - "mainBuggyLine": "462" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "470", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BATTERY_LOW = 'usual.event.BATTERY_LOW'", - "mainBuggyLine": "470" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "478", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BATTERY_OKAY = 'usual.event.BATTERY_OKAY'", - "mainBuggyLine": "478" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "486", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_POWER_CONNECTED = 'usual.event.POWER_CONNECTED'", - "mainBuggyLine": "486" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "494", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_POWER_DISCONNECTED = 'usual.event.POWER_DISCONNECTED'", - "mainBuggyLine": "494" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "502", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_SCREEN_OFF = 'usual.event.SCREEN_OFF'", - "mainBuggyLine": "502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "510", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_SCREEN_ON = 'usual.event.SCREEN_ON'", - "mainBuggyLine": "510" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "518", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_THERMAL_LEVEL_CHANGED = 'usual.event.THERMAL_LEVEL_CHANGED'", - "mainBuggyLine": "518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "527", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_USER_PRESENT = 'usual.event.USER_PRESENT'", - "mainBuggyLine": "527" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "535", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_TIME_TICK = 'usual.event.TIME_TICK'", - "mainBuggyLine": "535" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "543", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_TIME_CHANGED = 'usual.event.TIME_CHANGED'", - "mainBuggyLine": "543" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "551", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_DATE_CHANGED = 'usual.event.DATE_CHANGED'", - "mainBuggyLine": "551" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "559", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_TIMEZONE_CHANGED = 'usual.event.TIMEZONE_CHANGED'", - "mainBuggyLine": "559" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "567", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_CLOSE_SYSTEM_DIALOGS = 'usual.event.CLOSE_SYSTEM_DIALOGS'", - "mainBuggyLine": "567" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "575", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_PACKAGE_ADDED = 'usual.event.PACKAGE_ADDED'", - "mainBuggyLine": "575" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "584", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_PACKAGE_REPLACED = 'usual.event.PACKAGE_REPLACED'", - "mainBuggyLine": "584" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "593", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_MY_PACKAGE_REPLACED = 'usual.event.MY_PACKAGE_REPLACED'", - "mainBuggyLine": "593" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "601", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_PACKAGE_REMOVED = 'usual.event.PACKAGE_REMOVED'", - "mainBuggyLine": "601" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "609", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BUNDLE_REMOVED = 'usual.event.BUNDLE_REMOVED'", - "mainBuggyLine": "609" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "617", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_PACKAGE_FULLY_REMOVED = 'usual.event.PACKAGE_FULLY_REMOVED'", - "mainBuggyLine": "617" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "625", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_PACKAGE_CHANGED = 'usual.event.PACKAGE_CHANGED'", - "mainBuggyLine": "625" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "633", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_PACKAGE_RESTARTED = 'usual.event.PACKAGE_RESTARTED'", - "mainBuggyLine": "633" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "641", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_PACKAGE_DATA_CLEARED = 'usual.event.PACKAGE_DATA_CLEARED'", - "mainBuggyLine": "641" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "649", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_PACKAGE_CACHE_CLEARED = 'usual.event.PACKAGE_CACHE_CLEARED'", - "mainBuggyLine": "649" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "657", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_PACKAGES_SUSPENDED = 'usual.event.PACKAGES_SUSPENDED'", - "mainBuggyLine": "657" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "665", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_PACKAGES_UNSUSPENDED = 'usual.event.PACKAGES_UNSUSPENDED'", - "mainBuggyLine": "665" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "673", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_MY_PACKAGE_SUSPENDED = 'usual.event.MY_PACKAGE_SUSPENDED'", - "mainBuggyLine": "673" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "681", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_MY_PACKAGE_UNSUSPENDED = 'usual.event.MY_PACKAGE_UNSUSPENDED'", - "mainBuggyLine": "681" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "689", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_UID_REMOVED = 'usual.event.UID_REMOVED'", - "mainBuggyLine": "689" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "697", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_PACKAGE_FIRST_LAUNCH = 'usual.event.PACKAGE_FIRST_LAUNCH'", - "mainBuggyLine": "697" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "705", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_PACKAGE_NEEDS_VERIFICATION = 'usual.event.PACKAGE_NEEDS_VERIFICATION'", - "mainBuggyLine": "705" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "713", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_PACKAGE_VERIFIED = 'usual.event.PACKAGE_VERIFIED'", - "mainBuggyLine": "713" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "722", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_EXTERNAL_APPLICATIONS_AVAILABLE = 'usual.event.EXTERNAL_APPLICATIONS_AVAILABLE'", - "mainBuggyLine": "722" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "730", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_EXTERNAL_APPLICATIONS_UNAVAILABLE = 'usual.event.EXTERNAL_APPLICATIONS_UNAVAILABLE'", - "mainBuggyLine": "730" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "738", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_CONFIGURATION_CHANGED = 'usual.event.CONFIGURATION_CHANGED'", - "mainBuggyLine": "738" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "746", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_LOCALE_CHANGED = 'usual.event.LOCALE_CHANGED'", - "mainBuggyLine": "746" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "754", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_MANAGE_PACKAGE_STORAGE = 'usual.event.MANAGE_PACKAGE_STORAGE'", - "mainBuggyLine": "754" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "762", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_DRIVE_MODE = 'common.event.DRIVE_MODE'", - "mainBuggyLine": "762" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "770", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_HOME_MODE = 'common.event.HOME_MODE'", - "mainBuggyLine": "770" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "778", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_OFFICE_MODE = 'common.event.OFFICE_MODE'", - "mainBuggyLine": "778" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "786", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_USER_STARTED = 'usual.event.USER_STARTED'", - "mainBuggyLine": "786" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "794", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_USER_BACKGROUND = 'usual.event.USER_BACKGROUND'", - "mainBuggyLine": "794" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "802", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_USER_FOREGROUND = 'usual.event.USER_FOREGROUND'", - "mainBuggyLine": "802" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "811", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_USER_SWITCHED = 'usual.event.USER_SWITCHED'", - "mainBuggyLine": "811" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "820", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_USER_STARTING = 'usual.event.USER_STARTING'", - "mainBuggyLine": "820" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "828", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_USER_UNLOCKED = 'usual.event.USER_UNLOCKED'", - "mainBuggyLine": "828" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "837", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_USER_STOPPING = 'usual.event.USER_STOPPING'", - "mainBuggyLine": "837" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "845", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_USER_STOPPED = 'usual.event.USER_STOPPED'", - "mainBuggyLine": "845" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "913", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_WIFI_POWER_STATE = 'usual.event.wifi.POWER_STATE'", - "mainBuggyLine": "913" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "921", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_WIFI_SCAN_FINISHED = 'usual.event.wifi.SCAN_FINISHED'", - "mainBuggyLine": "921" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "929", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_WIFI_RSSI_VALUE = 'usual.event.wifi.RSSI_VALUE'", - "mainBuggyLine": "929" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "937", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_WIFI_CONN_STATE = 'usual.event.wifi.CONN_STATE'", - "mainBuggyLine": "937" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "945", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_WIFI_HOTSPOT_STATE = 'usual.event.wifi.HOTSPOT_STATE'", - "mainBuggyLine": "945" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "953", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_WIFI_AP_STA_JOIN = 'usual.event.wifi.WIFI_HS_STA_JOIN'", - "mainBuggyLine": "953" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "961", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_WIFI_AP_STA_LEAVE = 'usual.event.wifi.WIFI_HS_STA_LEAVE'", - "mainBuggyLine": "961" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "969", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_WIFI_MPLINK_STATE_CHANGE = 'usual.event.wifi.mplink.STATE_CHANGE'", - "mainBuggyLine": "969" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "977", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_WIFI_P2P_CONN_STATE = 'usual.event.wifi.p2p.CONN_STATE_CHANGE'", - "mainBuggyLine": "977" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "985", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_WIFI_P2P_STATE_CHANGED = 'usual.event.wifi.p2p.STATE_CHANGE'", - "mainBuggyLine": "985" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "993", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_WIFI_P2P_PEERS_STATE_CHANGED = 'usual.event.wifi.p2p.DEVICES_CHANGE'", - "mainBuggyLine": "993" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1001", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_WIFI_P2P_PEERS_DISCOVERY_STATE_CHANGED = 'usual.event.wifi.p2p.PEER_DISCOVERY_STATE_CHANGE'", - "mainBuggyLine": "1001" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1009", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_WIFI_P2P_CURRENT_DEVICE_STATE_CHANGED = 'usual.event.wifi.p2p.CURRENT_DEVICE_CHANGE'", - "mainBuggyLine": "1009" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1017", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_WIFI_P2P_GROUP_STATE_CHANGED = 'usual.event.wifi.p2p.GROUP_STATE_CHANGED'", - "mainBuggyLine": "1017" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1025", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_CONNECT_STATE_UPDATE = 'usual.event.bluetooth.handsfree.ag.CONNECT_STATE_UPDATE'", - "mainBuggyLine": "1025" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1033", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_CURRENT_DEVICE_UPDATE = 'usual.event.bluetooth.handsfree.ag.CURRENT_DEVICE_UPDATE'", - "mainBuggyLine": "1033" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1041", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_AUDIO_STATE_UPDATE = 'usual.event.bluetooth.handsfree.ag.AUDIO_STATE_UPDATE'", - "mainBuggyLine": "1041" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1049", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CONNECT_STATE_UPDATE = 'usual.event.bluetooth.a2dpsource.CONNECT_STATE_UPDATE'", - "mainBuggyLine": "1049" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1057", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CURRENT_DEVICE_UPDATE = 'usual.event.bluetooth.a2dpsource.CURRENT_DEVICE_UPDATE'", - "mainBuggyLine": "1057" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1065", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_A2DPSOURCE_PLAYING_STATE_UPDATE = 'usual.event.bluetooth.a2dpsource.PLAYING_STATE_UPDATE'", - "mainBuggyLine": "1065" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1073", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_A2DPSOURCE_AVRCP_CONNECT_STATE_UPDATE = 'usual.event.bluetooth.a2dpsource.AVRCP_CONNECT_STATE_UPDATE'", - "mainBuggyLine": "1073" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1081", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CODEC_VALUE_UPDATE = 'usual.event.bluetooth.a2dpsource.CODEC_VALUE_UPDATE'", - "mainBuggyLine": "1081" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1089", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_DISCOVERED = 'usual.event.bluetooth.remotedevice.DISCOVERED'", - "mainBuggyLine": "1089" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1097", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CLASS_VALUE_UPDATE = 'usual.event.bluetooth.remotedevice.CLASS_VALUE_UPDATE'", - "mainBuggyLine": "1097" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1105", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_ACL_CONNECTED = 'usual.event.bluetooth.remotedevice.ACL_CONNECTED'", - "mainBuggyLine": "1105" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1113", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_ACL_DISCONNECTED = 'usual.event.bluetooth.remotedevice.ACL_DISCONNECTED'", - "mainBuggyLine": "1113" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1121", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_NAME_UPDATE = 'usual.event.bluetooth.remotedevice.NAME_UPDATE'", - "mainBuggyLine": "1121" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1129", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIR_STATE = 'usual.event.bluetooth.remotedevice.PAIR_STATE'", - "mainBuggyLine": "1129" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1137", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_BATTERY_VALUE_UPDATE = 'usual.event.bluetooth.remotedevice.BATTERY_VALUE_UPDATE'", - "mainBuggyLine": "1137" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1145", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_SDP_RESULT = 'usual.event.bluetooth.remotedevice.SDP_RESULT'", - "mainBuggyLine": "1145" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1153", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_UUID_VALUE = 'usual.event.bluetooth.remotedevice.UUID_VALUE'", - "mainBuggyLine": "1153" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1161", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIRING_REQ = 'usual.event.bluetooth.remotedevice.PAIRING_REQ'", - "mainBuggyLine": "1161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1169", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIRING_CANCEL = 'usual.event.bluetooth.remotedevice.PAIRING_CANCEL'", - "mainBuggyLine": "1169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1177", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_REQ = 'usual.event.bluetooth.remotedevice.CONNECT_REQ'", - "mainBuggyLine": "1177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1185", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_REPLY = 'usual.event.bluetooth.remotedevice.CONNECT_REPLY'", - "mainBuggyLine": "1185" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1193", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_CANCEL = 'usual.event.bluetooth.remotedevice.CONNECT_CANCEL'", - "mainBuggyLine": "1193" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1201", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_CONNECT_STATE_UPDATE = 'usual.event.bluetooth.handsfreeunit.CONNECT_STATE_UPDATE'", - "mainBuggyLine": "1201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1209", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AUDIO_STATE_UPDATE = 'usual.event.bluetooth.handsfreeunit.AUDIO_STATE_UPDATE'", - "mainBuggyLine": "1209" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1217", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AG_COMMON_EVENT = 'usual.event.bluetooth.handsfreeunit.AG_COMMON_EVENT'", - "mainBuggyLine": "1217" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1225", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AG_CALL_STATE_UPDATE = 'usual.event.bluetooth.handsfreeunit.AG_CALL_STATE_UPDATE'", - "mainBuggyLine": "1225" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1233", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_HOST_STATE_UPDATE = 'usual.event.bluetooth.host.STATE_UPDATE'", - "mainBuggyLine": "1233" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1241", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_HOST_REQ_DISCOVERABLE = 'usual.event.bluetooth.host.REQ_DISCOVERABLE'", - "mainBuggyLine": "1241" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1249", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_HOST_REQ_ENABLE = 'usual.event.bluetooth.host.REQ_ENABLE'", - "mainBuggyLine": "1249" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1257", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_HOST_REQ_DISABLE = 'usual.event.bluetooth.host.REQ_DISABLE'", - "mainBuggyLine": "1257" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1265", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_HOST_SCAN_MODE_UPDATE = 'usual.event.bluetooth.host.SCAN_MODE_UPDATE'", - "mainBuggyLine": "1265" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1273", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_HOST_DISCOVERY_STARTED = 'usual.event.bluetooth.host.DISCOVERY_STARTED'", - "mainBuggyLine": "1273" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1281", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_HOST_DISCOVERY_FINISHED = 'usual.event.bluetooth.host.DISCOVERY_FINISHED'", - "mainBuggyLine": "1281" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1289", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_HOST_NAME_UPDATE = 'usual.event.bluetooth.host.NAME_UPDATE'", - "mainBuggyLine": "1289" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1297", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_A2DPSINK_CONNECT_STATE_UPDATE = 'usual.event.bluetooth.a2dpsink.CONNECT_STATE_UPDATE'", - "mainBuggyLine": "1297" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1305", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_A2DPSINK_PLAYING_STATE_UPDATE = 'usual.event.bluetooth.a2dpsink.PLAYING_STATE_UPDATE'", - "mainBuggyLine": "1305" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1313", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_BLUETOOTH_A2DPSINK_AUDIO_STATE_UPDATE = 'usual.event.bluetooth.a2dpsink.AUDIO_STATE_UPDATE'", - "mainBuggyLine": "1313" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1321", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_NFC_ACTION_ADAPTER_STATE_CHANGED = 'usual.event.nfc.action.ADAPTER_STATE_CHANGED'", - "mainBuggyLine": "1321" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1329", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_NFC_ACTION_RF_FIELD_ON_DETECTED = 'usual.event.nfc.action.RF_FIELD_ON_DETECTED'", - "mainBuggyLine": "1329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1337", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_NFC_ACTION_RF_FIELD_OFF_DETECTED = 'usual.event.nfc.action.RF_FIELD_OFF_DETECTED'", - "mainBuggyLine": "1337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1345", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_DISCHARGING = 'usual.event.DISCHARGING'", - "mainBuggyLine": "1345" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1353", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_CHARGING = 'usual.event.CHARGING'", - "mainBuggyLine": "1353" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1362", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_CHARGE_TYPE_CHANGED = 'usual.event.CHARGE_TYPE_CHANGED'", - "mainBuggyLine": "1362" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1370", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_DEVICE_IDLE_MODE_CHANGED = 'usual.event.DEVICE_IDLE_MODE_CHANGED'", - "mainBuggyLine": "1370" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1378", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_CHARGE_IDLE_MODE_CHANGED = 'usual.event.CHARGE_IDLE_MODE_CHANGED'", - "mainBuggyLine": "1378" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1387", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_DEVICE_IDLE_EXEMPTION_LIST_UPDATED = 'usual.event.DEVICE_IDLE_EXEMPTION_LIST_UPDATED'", - "mainBuggyLine": "1387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1395", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_POWER_SAVE_MODE_CHANGED = 'usual.event.POWER_SAVE_MODE_CHANGED'", - "mainBuggyLine": "1395" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1404", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_USER_ADDED = 'usual.event.USER_ADDED'", - "mainBuggyLine": "1404" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1413", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_USER_REMOVED = 'usual.event.USER_REMOVED'", - "mainBuggyLine": "1413" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1421", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_ABILITY_ADDED = 'common.event.ABILITY_ADDED'", - "mainBuggyLine": "1421" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1429", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_ABILITY_REMOVED = 'common.event.ABILITY_REMOVED'", - "mainBuggyLine": "1429" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1437", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_ABILITY_UPDATED = 'common.event.ABILITY_UPDATED'", - "mainBuggyLine": "1437" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1445", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_LOCATION_MODE_STATE_CHANGED = 'usual.event.location.MODE_STATE_CHANGED'", - "mainBuggyLine": "1445" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1454", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_IVI_SLEEP = 'common.event.IVI_SLEEP'", - "mainBuggyLine": "1454" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1463", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_IVI_PAUSE = 'common.event.IVI_PAUSE'", - "mainBuggyLine": "1463" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1472", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_IVI_STANDBY = 'common.event.IVI_STANDBY'", - "mainBuggyLine": "1472" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1481", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_IVI_LASTMODE_SAVE = 'common.event.IVI_LASTMODE_SAVE'", - "mainBuggyLine": "1481" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1490", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_IVI_VOLTAGE_ABNORMAL = 'common.event.IVI_VOLTAGE_ABNORMAL'", - "mainBuggyLine": "1490" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1500", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_IVI_HIGH_TEMPERATURE = 'common.event.IVI_HIGH_TEMPERATURE'", - "mainBuggyLine": "1500" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1510", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_IVI_EXTREME_TEMPERATURE = 'common.event.IVI_EXTREME_TEMPERATURE'", - "mainBuggyLine": "1510" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1519", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_IVI_TEMPERATURE_ABNORMAL = 'common.event.IVI_TEMPERATURE_ABNORMAL'", - "mainBuggyLine": "1519" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1528", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_IVI_VOLTAGE_RECOVERY = 'common.event.IVI_VOLTAGE_RECOVERY'", - "mainBuggyLine": "1528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1537", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_IVI_TEMPERATURE_RECOVERY = 'common.event.IVI_TEMPERATURE_RECOVERY'", - "mainBuggyLine": "1537" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1546", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_IVI_ACTIVE = 'common.event.IVI_ACTIVE'", - "mainBuggyLine": "1546" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1555", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_USB_STATE = 'usual.event.hardware.usb.action.USB_STATE'", - "mainBuggyLine": "1555" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1564", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_USB_PORT_CHANGED = 'usual.event.hardware.usb.action.USB_PORT_CHANGED'", - "mainBuggyLine": "1564" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1573", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_USB_DEVICE_ATTACHED = 'usual.event.hardware.usb.action.USB_DEVICE_ATTACHED'", - "mainBuggyLine": "1573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1582", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_USB_DEVICE_DETACHED = 'usual.event.hardware.usb.action.USB_DEVICE_DETACHED'", - "mainBuggyLine": "1582" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1591", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_USB_ACCESSORY_ATTACHED = 'usual.event.hardware.usb.action.USB_ACCESSORY_ATTACHED'", - "mainBuggyLine": "1591" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1600", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_USB_ACCESSORY_DETACHED = 'usual.event.hardware.usb.action.USB_ACCESSORY_DETACHED'", - "mainBuggyLine": "1600" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1609", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_DISK_REMOVED = 'usual.event.data.DISK_REMOVED'", - "mainBuggyLine": "1609" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1618", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_DISK_UNMOUNTED = 'usual.event.data.DISK_UNMOUNTED'", - "mainBuggyLine": "1618" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1627", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_DISK_MOUNTED = 'usual.event.data.DISK_MOUNTED'", - "mainBuggyLine": "1627" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1636", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_DISK_BAD_REMOVAL = 'usual.event.data.DISK_BAD_REMOVAL'", - "mainBuggyLine": "1636" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1645", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_DISK_UNMOUNTABLE = 'usual.event.data.DISK_UNMOUNTABLE'", - "mainBuggyLine": "1645" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1654", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_DISK_EJECT = 'usual.event.data.DISK_EJECT'", - "mainBuggyLine": "1654" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1664", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_VOLUME_REMOVED = 'usual.event.data.VOLUME_REMOVED'", - "mainBuggyLine": "1664" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1674", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_VOLUME_UNMOUNTED = 'usual.event.data.VOLUME_UNMOUNTED'", - "mainBuggyLine": "1674" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1684", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_VOLUME_MOUNTED = 'usual.event.data.VOLUME_MOUNTED'", - "mainBuggyLine": "1684" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1694", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_VOLUME_BAD_REMOVAL = 'usual.event.data.VOLUME_BAD_REMOVAL'", - "mainBuggyLine": "1694" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1704", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_VOLUME_EJECT = 'usual.event.data.VOLUME_EJECT'", - "mainBuggyLine": "1704" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1713", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_VISIBLE_ACCOUNTS_UPDATED = 'usual.event.data.VISIBLE_ACCOUNTS_UPDATED'", - "mainBuggyLine": "1713" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1723", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_ACCOUNT_DELETED = 'usual.event.data.ACCOUNT_DELETED'", - "mainBuggyLine": "1723" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1732", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_FOUNDATION_READY = 'common.event.FOUNDATION_READY'", - "mainBuggyLine": "1732" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1741", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_AIRPLANE_MODE_CHANGED = 'usual.event.AIRPLANE_MODE'", - "mainBuggyLine": "1741" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1766", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_SLOT_CHANGE = 'usual.event.SLOT_CHANGE'", - "mainBuggyLine": "1766" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1775", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_SPN_INFO_CHANGED = 'usual.event.SPN_INFO_CHANGED'", - "mainBuggyLine": "1775" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1784", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_QUICK_FIX_APPLY_RESULT = 'usual.event.QUICK_FIX_APPLY_RESULT'", - "mainBuggyLine": "1784" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1793", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_QUICK_FIX_REVOKE_RESULT = 'usual.event.QUICK_FIX_REVOKE_RESULT'", - "mainBuggyLine": "1793" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1802", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_USER_INFO_UPDATED = 'usual.event.USER_INFO_UPDATED'", - "mainBuggyLine": "1802" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1811", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_HTTP_PROXY_CHANGE = 'usual.event.HTTP_PROXY_CHANGE'", - "mainBuggyLine": "1811" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1820", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_SIM_STATE_CHANGED = 'usual.event.SIM_STATE_CHANGED'", - "mainBuggyLine": "1820" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1831", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_SMS_RECEIVE_COMPLETED = 'usual.event.SMS_RECEIVE_COMPLETED'", - "mainBuggyLine": "1831" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1841", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_SMS_EMERGENCY_CB_RECEIVE_COMPLETED = 'usual.event.SMS_EMERGENCY_CB_RECEIVE_COMPLETED'", - "mainBuggyLine": "1841" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1851", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_SMS_CB_RECEIVE_COMPLETED = 'usual.event.SMS_CB_RECEIVE_COMPLETED'", - "mainBuggyLine": "1851" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1863", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_STK_COMMAND = 'usual.event.STK_COMMAND'", - "mainBuggyLine": "1863" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1875", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_STK_SESSION_END = 'usual.event.STK_SESSION_END'", - "mainBuggyLine": "1875" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1887", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_STK_CARD_STATE_CHANGED = 'usual.event.STK_CARD_STATE_CHANGED'", - "mainBuggyLine": "1887" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1899", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_STK_ALPHA_IDENTIFIER = 'usual.event.STK_ALPHA_IDENTIFIER'", - "mainBuggyLine": "1899" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1909", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_SMS_WAPPUSH_RECEIVE_COMPLETED = 'usual.event.SMS_WAPPUSH_RECEIVE_COMPLETED'", - "mainBuggyLine": "1909" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1919", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_OPERATOR_CONFIG_CHANGED = 'usual.event.OPERATOR_CONFIG_CHANGED'", - "mainBuggyLine": "1919" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1929", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_SIM_CARD_DEFAULT_SMS_SUBSCRIPTION_CHANGED = 'usual.event.SIM.DEFAULT_SMS_SUBSCRIPTION_CHANGED'", - "mainBuggyLine": "1929" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1939", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_SIM_CARD_DEFAULT_DATA_SUBSCRIPTION_CHANGED = 'usual.event.SIM.DEFAULT_DATA_SUBSCRIPTION_CHANGED'", - "mainBuggyLine": "1939" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1949", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_SIM_CARD_DEFAULT_MAIN_SUBSCRIPTION_CHANGED = 'usual.event.SIM.DEFAULT_MAIN_SUBSCRIPTION_CHANGED'", - "mainBuggyLine": "1949" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1959", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_SET_PRIMARY_SLOT_STATUS = 'usual.event.SET_PRIMARY_SLOT_STATUS'", - "mainBuggyLine": "1959" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1969", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_PRIMARY_SLOT_ROAMING = 'usual.event.PRIMARY_SLOT_ROAMING'", - "mainBuggyLine": "1969" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1979", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_SIM_CARD_DEFAULT_VOICE_SUBSCRIPTION_CHANGED = 'usual.event.SIM.DEFAULT_VOICE_SUBSCRIPTION_CHANGED'", - "mainBuggyLine": "1979" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "1990", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_CALL_STATE_CHANGED = 'usual.event.CALL_STATE_CHANGED'", - "mainBuggyLine": "1990" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "2000", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_CELLULAR_DATA_STATE_CHANGED = 'usual.event.CELLULAR_DATA_STATE_CHANGED'", - "mainBuggyLine": "2000" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "2009", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_NETWORK_STATE_CHANGED = 'usual.event.NETWORK_STATE_CHANGED'", - "mainBuggyLine": "2009" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "2018", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_SIGNAL_INFO_CHANGED = 'usual.event.SIGNAL_INFO_CHANGED'", - "mainBuggyLine": "2018" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "2030", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_INCOMING_CALL_MISSED = 'usual.event.INCOMING_CALL_MISSED'", - "mainBuggyLine": "2030" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "2040", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_RADIO_STATE_CHANGE = 'usual.event.RADIO_STATE_CHANGE'", - "mainBuggyLine": "2040" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "2050", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_DOMAIN_ACCOUNT_STATUS_CHANGED = 'usual.event.DOMAIN_ACCOUNT_STATUS_CHANGED'", - "mainBuggyLine": "2050" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "2107", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_SPECIAL_CODE = 'common.event.SPECIAL_CODE'", - "mainBuggyLine": "2107" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "2117", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_AUDIO_QUALITY_CHANGE = 'usual.event.AUDIO_QUALITY_CHANGE'", - "mainBuggyLine": "2117" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "2127", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_PRIVACY_STATE_CHANGED = 'usual.event.PRIVACY_STATE_CHANGED'", - "mainBuggyLine": "2127" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "2137", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_PACKAGE_INSTALLATION_STARTED = 'usual.event.PACKAGE_INSTALLATION_STARTED'", - "mainBuggyLine": "2137" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "2147", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMMON_EVENT_DYNAMIC_ICON_CHANGED = 'usual.event.DYNAMIC_ICON_CHANGED'", - "mainBuggyLine": "2147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "2183", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type CommonEventData = _CommonEventData;", - "mainBuggyLine": "2183" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "2198", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type CommonEventSubscriber = _CommonEventSubscriber;", - "mainBuggyLine": "2198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "2213", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type CommonEventSubscribeInfo = _CommonEventSubscribeInfo;", - "mainBuggyLine": "2213" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts", - "codeContextStaerLine": "2236", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type CommonEventPublishData = _CommonEventPublishData;", - "mainBuggyLine": "2236" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function addContact(contact: Contact, callback: AsyncCallback): void;", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "100", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function addContact(contact: Contact): Promise;", - "mainBuggyLine": "100" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "142", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function selectContact(callback: AsyncCallback>): void;", - "mainBuggyLine": "142" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "176", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function selectContact(): Promise>;", - "mainBuggyLine": "176" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "252", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function deleteContact(key: string, callback: AsyncCallback): void;", - "mainBuggyLine": "252" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "266", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function deleteContact(context: Context, key: string, callback: AsyncCallback): void;", - "mainBuggyLine": "266" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "279", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function deleteContact(key: string): Promise;", - "mainBuggyLine": "279" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "293", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function deleteContact(context: Context, key: string): Promise;", - "mainBuggyLine": "293" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "306", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContact(key: string, callback: AsyncCallback): void;", - "mainBuggyLine": "306" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "320", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContact(context: Context, key: string, callback: AsyncCallback): void;", - "mainBuggyLine": "320" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "335", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContact(key: string, holder: Holder, callback: AsyncCallback): void;", - "mainBuggyLine": "335" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "351", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContact(context: Context, key: string, holder: Holder, callback: AsyncCallback): void;", - "mainBuggyLine": "351" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "366", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContact(key: string, attrs: ContactAttributes, callback: AsyncCallback): void;", - "mainBuggyLine": "366" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "382", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContact(context: Context, key: string, attrs: ContactAttributes, callback: AsyncCallback): void;", - "mainBuggyLine": "382" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "398", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContact(key: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback): void;", - "mainBuggyLine": "398" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "415", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContact(context: Context, key: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback): void;", - "mainBuggyLine": "415" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "431", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContact(key: string, holder?: Holder, attrs?: ContactAttributes): Promise;", - "mainBuggyLine": "431" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "448", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContact(context: Context, key: string, holder?: Holder, attrs?: ContactAttributes): Promise;", - "mainBuggyLine": "448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "460", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContacts(callback: AsyncCallback>): void;", - "mainBuggyLine": "460" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "473", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContacts(context: Context, callback: AsyncCallback>): void;", - "mainBuggyLine": "473" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "487", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContacts(holder: Holder, callback: AsyncCallback>): void;", - "mainBuggyLine": "487" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "502", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContacts(context: Context, holder: Holder, callback: AsyncCallback>): void;", - "mainBuggyLine": "502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "516", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContacts(attrs: ContactAttributes, callback: AsyncCallback>): void;", - "mainBuggyLine": "516" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "531", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContacts(context: Context, attrs: ContactAttributes, callback: AsyncCallback>): void;", - "mainBuggyLine": "531" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "547", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContacts(holder: Holder, attrs: ContactAttributes, callback: AsyncCallback>): void;", - "mainBuggyLine": "547" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "564", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContacts(context: Context, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback>): void;", - "mainBuggyLine": "564" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "580", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContacts(holder?: Holder, attrs?: ContactAttributes): Promise>;", - "mainBuggyLine": "580" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "597", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContacts(context: Context, holder?: Holder, attrs?: ContactAttributes): Promise>;", - "mainBuggyLine": "597" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "610", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContactsByEmail(email: string, callback: AsyncCallback>): void;", - "mainBuggyLine": "610" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "624", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContactsByEmail(context: Context, email: string, callback: AsyncCallback>): void;", - "mainBuggyLine": "624" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "639", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContactsByEmail(email: string, holder: Holder, callback: AsyncCallback>): void;", - "mainBuggyLine": "639" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "655", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContactsByEmail(context: Context, email: string, holder: Holder,\n callback: AsyncCallback>): void;", - "mainBuggyLine": "655" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "671", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContactsByEmail(email: string, attrs: ContactAttributes, callback: AsyncCallback>): void;", - "mainBuggyLine": "671" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "687", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContactsByEmail(context: Context, email: string, attrs: ContactAttributes,\n callback: AsyncCallback>): void;", - "mainBuggyLine": "687" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "705", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContactsByEmail(email: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback>): void;", - "mainBuggyLine": "705" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "723", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContactsByEmail(context: Context, email: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback>): void;", - "mainBuggyLine": "723" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "740", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContactsByEmail(email: string, holder?: Holder, attrs?: ContactAttributes): Promise>;", - "mainBuggyLine": "740" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "758", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContactsByEmail(context: Context, email: string, holder?: Holder, attrs?: ContactAttributes): Promise>;", - "mainBuggyLine": "758" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "772", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContactsByPhoneNumber(phoneNumber: string, callback: AsyncCallback>): void;", - "mainBuggyLine": "772" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "787", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContactsByPhoneNumber(context: Context, phoneNumber: string, callback: AsyncCallback>): void;", - "mainBuggyLine": "787" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "803", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContactsByPhoneNumber(phoneNumber: string, holder: Holder, callback: AsyncCallback>): void;", - "mainBuggyLine": "803" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "820", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContactsByPhoneNumber(context: Context, phoneNumber: string, holder: Holder, callback: AsyncCallback>): void;", - "mainBuggyLine": "820" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "836", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContactsByPhoneNumber(phoneNumber: string, attrs: ContactAttributes, callback: AsyncCallback>): void;", - "mainBuggyLine": "836" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "853", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContactsByPhoneNumber(context: Context, phoneNumber: string, attrs: ContactAttributes, callback: AsyncCallback>): void;", - "mainBuggyLine": "853" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "871", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContactsByPhoneNumber(phoneNumber: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback>): void;", - "mainBuggyLine": "871" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "890", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContactsByPhoneNumber(context: Context, phoneNumber: string, holder: Holder, attrs: ContactAttributes,\n callback: AsyncCallback>): void;", - "mainBuggyLine": "890" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "909", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContactsByPhoneNumber(phoneNumber: string, holder?: Holder, attrs?: ContactAttributes): Promise>;", - "mainBuggyLine": "909" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "928", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryContactsByPhoneNumber(context: Context, phoneNumber: string, holder?: Holder, attrs?: ContactAttributes): Promise>;", - "mainBuggyLine": "928" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "940", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryGroups(callback: AsyncCallback>): void;", - "mainBuggyLine": "940" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "953", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryGroups(context: Context, callback: AsyncCallback>): void;", - "mainBuggyLine": "953" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "967", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryGroups(holder: Holder, callback: AsyncCallback>): void;", - "mainBuggyLine": "967" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "982", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryGroups(context: Context, holder: Holder, callback: AsyncCallback>): void;", - "mainBuggyLine": "982" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "996", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryGroups(holder?: Holder): Promise>;", - "mainBuggyLine": "996" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1011", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryGroups(context: Context, holder?: Holder): Promise>;", - "mainBuggyLine": "1011" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1023", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryHolders(callback: AsyncCallback>): void;", - "mainBuggyLine": "1023" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1036", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryHolders(context: Context, callback: AsyncCallback>): void;", - "mainBuggyLine": "1036" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1048", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryHolders(): Promise>;", - "mainBuggyLine": "1048" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1061", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryHolders(context: Context): Promise>;", - "mainBuggyLine": "1061" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1074", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryKey(id: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1074" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1088", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryKey(context: Context, id: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1088" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1103", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryKey(id: number, holder: Holder, callback: AsyncCallback): void;", - "mainBuggyLine": "1103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1119", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryKey(context: Context, id: number, holder: Holder, callback: AsyncCallback): void;", - "mainBuggyLine": "1119" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryKey(id: number, holder?: Holder): Promise;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1150", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryKey(context: Context, id: number, holder?: Holder): Promise;", - "mainBuggyLine": "1150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1162", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryMyCard(callback: AsyncCallback): void;", - "mainBuggyLine": "1162" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1175", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryMyCard(context: Context, callback: AsyncCallback): void;", - "mainBuggyLine": "1175" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1189", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryMyCard(attrs: ContactAttributes, callback: AsyncCallback): void;", - "mainBuggyLine": "1189" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1204", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryMyCard(context: Context, attrs: ContactAttributes, callback: AsyncCallback): void;", - "mainBuggyLine": "1204" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1218", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryMyCard(attrs?: ContactAttributes): Promise;", - "mainBuggyLine": "1218" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1233", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function queryMyCard(context: Context, attrs?: ContactAttributes): Promise;", - "mainBuggyLine": "1233" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1246", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function updateContact(contact: Contact, callback: AsyncCallback): void;", - "mainBuggyLine": "1246" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1260", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function updateContact(context: Context, contact: Contact, callback: AsyncCallback): void;", - "mainBuggyLine": "1260" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1275", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function updateContact(contact: Contact, attrs: ContactAttributes, callback: AsyncCallback): void;", - "mainBuggyLine": "1275" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1291", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function updateContact(context: Context, contact: Contact, attrs: ContactAttributes, callback: AsyncCallback): void;", - "mainBuggyLine": "1291" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1306", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function updateContact(contact: Contact, attrs?: ContactAttributes): Promise;", - "mainBuggyLine": "1306" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1322", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function updateContact(context: Context, contact: Contact, attrs?: ContactAttributes): Promise;", - "mainBuggyLine": "1322" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1336", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isLocalContact(id: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1336" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1351", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isLocalContact(context: Context, id: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1351" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1365", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isLocalContact(id: number): Promise;", - "mainBuggyLine": "1365" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1380", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isLocalContact(context: Context, id: number): Promise;", - "mainBuggyLine": "1380" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1394", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isMyCard(id: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1394" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1409", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isMyCard(context: Context, id: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1409" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1422", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isMyCard(id: number): Promise;", - "mainBuggyLine": "1422" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1436", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isMyCard(context: Context, id: number): Promise;", - "mainBuggyLine": "1436" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "1503", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly INVALID_CONTACT_ID: -1", - "mainBuggyLine": "1503" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2089", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly CUSTOM_LABEL: 0", - "mainBuggyLine": "2089" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2108", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly EMAIL_HOME: 1", - "mainBuggyLine": "2108" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2127", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly EMAIL_WORK: 2", - "mainBuggyLine": "2127" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2146", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly EMAIL_OTHER: 3", - "mainBuggyLine": "2146" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2165", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly INVALID_LABEL_ID: -1", - "mainBuggyLine": "2165" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2267", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly CUSTOM_LABEL: 0", - "mainBuggyLine": "2267" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2286", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly EVENT_ANNIVERSARY: 1", - "mainBuggyLine": "2286" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2305", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly EVENT_OTHER: 2", - "mainBuggyLine": "2305" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2324", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly EVENT_BIRTHDAY: 3", - "mainBuggyLine": "2324" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2343", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly INVALID_LABEL_ID: -1", - "mainBuggyLine": "2343" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2452", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class Holder", - "mainBuggyLine": "2452" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2461", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly bundleName: string", - "mainBuggyLine": "2461" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2471", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly displayName?: string", - "mainBuggyLine": "2471" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2480", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "holderId?: number", - "mainBuggyLine": "2480" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2514", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly CUSTOM_LABEL: -1", - "mainBuggyLine": "2514" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2533", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly IM_AIM: 0", - "mainBuggyLine": "2533" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2552", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly IM_MSN: 1", - "mainBuggyLine": "2552" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2571", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly IM_YAHOO: 2", - "mainBuggyLine": "2571" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2590", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly IM_SKYPE: 3", - "mainBuggyLine": "2590" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2609", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly IM_QQ: 4", - "mainBuggyLine": "2609" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2628", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly IM_ICQ: 6", - "mainBuggyLine": "2628" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2647", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly IM_JABBER: 7", - "mainBuggyLine": "2647" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "2666", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly INVALID_LABEL_ID: -2", - "mainBuggyLine": "2666" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3032", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly CUSTOM_LABEL: 0", - "mainBuggyLine": "3032" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3051", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly NUM_HOME: 1", - "mainBuggyLine": "3051" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3070", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly NUM_MOBILE: 2", - "mainBuggyLine": "3070" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3089", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly NUM_WORK: 3", - "mainBuggyLine": "3089" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3108", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly NUM_FAX_WORK: 4", - "mainBuggyLine": "3108" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3127", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly NUM_FAX_HOME: 5", - "mainBuggyLine": "3127" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3146", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly NUM_PAGER: 6", - "mainBuggyLine": "3146" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3165", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly NUM_OTHER: 7", - "mainBuggyLine": "3165" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3184", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly NUM_CALLBACK: 8", - "mainBuggyLine": "3184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3203", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly NUM_CAR: 9", - "mainBuggyLine": "3203" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3222", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly NUM_COMPANY_MAIN: 10", - "mainBuggyLine": "3222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3241", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly NUM_ISDN: 11", - "mainBuggyLine": "3241" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3260", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly NUM_MAIN: 12", - "mainBuggyLine": "3260" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3279", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly NUM_OTHER_FAX: 13", - "mainBuggyLine": "3279" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3298", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly NUM_RADIO: 14", - "mainBuggyLine": "3298" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3317", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly NUM_TELEX: 15", - "mainBuggyLine": "3317" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3336", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly NUM_TTY_TDD: 16", - "mainBuggyLine": "3336" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3355", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly NUM_WORK_MOBILE: 17", - "mainBuggyLine": "3355" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3374", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly NUM_WORK_PAGER: 18", - "mainBuggyLine": "3374" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3393", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly NUM_ASSISTANT: 19", - "mainBuggyLine": "3393" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3412", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly NUM_MMS: 20", - "mainBuggyLine": "3412" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3431", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly INVALID_LABEL_ID: -1", - "mainBuggyLine": "3431" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3548", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly CUSTOM_LABEL: 0", - "mainBuggyLine": "3548" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3567", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly ADDR_HOME: 1", - "mainBuggyLine": "3567" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3586", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly ADDR_WORK: 2", - "mainBuggyLine": "3586" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3605", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly ADDR_OTHER: 3", - "mainBuggyLine": "3605" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3624", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly INVALID_LABEL_ID: -1", - "mainBuggyLine": "3624" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3828", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly CUSTOM_LABEL: 0", - "mainBuggyLine": "3828" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3847", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly RELATION_ASSISTANT: 1", - "mainBuggyLine": "3847" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3866", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly RELATION_BROTHER: 2", - "mainBuggyLine": "3866" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3885", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly RELATION_CHILD: 3", - "mainBuggyLine": "3885" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3904", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly RELATION_DOMESTIC_PARTNER: 4", - "mainBuggyLine": "3904" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3923", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly RELATION_FATHER: 5", - "mainBuggyLine": "3923" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3942", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly RELATION_FRIEND: 6", - "mainBuggyLine": "3942" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3961", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly RELATION_MANAGER: 7", - "mainBuggyLine": "3961" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3980", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly RELATION_MOTHER: 8", - "mainBuggyLine": "3980" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "3999", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly RELATION_PARENT: 9", - "mainBuggyLine": "3999" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "4018", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly RELATION_PARTNER: 10", - "mainBuggyLine": "4018" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "4037", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly RELATION_REFERRED_BY: 11", - "mainBuggyLine": "4037" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "4056", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly RELATION_RELATIVE: 12", - "mainBuggyLine": "4056" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "4075", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly RELATION_SISTER: 13", - "mainBuggyLine": "4075" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "4094", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly RELATION_SPOUSE: 14", - "mainBuggyLine": "4094" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "4113", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly INVALID_LABEL_ID: -1", - "mainBuggyLine": "4113" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "4198", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly CUSTOM_LABEL: 0", - "mainBuggyLine": "4198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "4217", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly SIP_HOME: 1", - "mainBuggyLine": "4217" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "4236", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly SIP_WORK: 2", - "mainBuggyLine": "4236" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "4255", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly SIP_OTHER: 3", - "mainBuggyLine": "4255" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts", - "codeContextStaerLine": "4274", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "static readonly INVALID_LABEL_ID: -1", - "mainBuggyLine": "4274" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.continuation.continuationManager.d.ts", - "codeContextStaerLine": "211", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'deviceConnect', callback: Callback): void;", - "mainBuggyLine": "211" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.continuation.continuationManager.d.ts", - "codeContextStaerLine": "226", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'deviceConnect', callback?: Callback): void;", - "mainBuggyLine": "226" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.continuation.continuationManager.d.ts", - "codeContextStaerLine": "240", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'deviceDisconnect', callback: Callback): void;", - "mainBuggyLine": "240" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.continuation.continuationManager.d.ts", - "codeContextStaerLine": "254", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'deviceDisconnect', callback?: Callback): void;", - "mainBuggyLine": "254" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.continuation.continuationManager.d.ts", - "codeContextStaerLine": "267", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function register(callback: AsyncCallback): void;", - "mainBuggyLine": "267" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.continuation.continuationManager.d.ts", - "codeContextStaerLine": "282", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function register(options: ContinuationExtraParams, callback: AsyncCallback): void;", - "mainBuggyLine": "282" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.continuation.continuationManager.d.ts", - "codeContextStaerLine": "297", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function register(options?: ContinuationExtraParams): Promise;", - "mainBuggyLine": "297" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.continuation.continuationManager.d.ts", - "codeContextStaerLine": "310", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function unregister(token: number, callback: AsyncCallback): void;", - "mainBuggyLine": "310" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.continuation.continuationManager.d.ts", - "codeContextStaerLine": "324", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function unregister(token: number): Promise;", - "mainBuggyLine": "324" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.continuation.continuationManager.d.ts", - "codeContextStaerLine": "338", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function updateConnectStatus(\n token: number,\n deviceId: string,\n status: DeviceConnectState,\n callback: AsyncCallback\n ): void;", - "mainBuggyLine": "338" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.continuation.continuationManager.d.ts", - "codeContextStaerLine": "358", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function updateConnectStatus(token: number, deviceId: string, status: DeviceConnectState): Promise;", - "mainBuggyLine": "358" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.continuation.continuationManager.d.ts", - "codeContextStaerLine": "370", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function startDeviceManager(token: number, callback: AsyncCallback): void;", - "mainBuggyLine": "370" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.continuation.continuationManager.d.ts", - "codeContextStaerLine": "384", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function startDeviceManager(token: number, options: ContinuationExtraParams, callback: AsyncCallback): void;", - "mainBuggyLine": "384" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.continuation.continuationManager.d.ts", - "codeContextStaerLine": "399", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function startDeviceManager(token: number, options?: ContinuationExtraParams): Promise;", - "mainBuggyLine": "399" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.convertxml.d.ts", - "codeContextStaerLine": "92", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "trim: boolean;", - "mainBuggyLine": "92" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.convertxml.d.ts", - "codeContextStaerLine": "114", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ignoreDeclaration?: boolean;", - "mainBuggyLine": "114" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.convertxml.d.ts", - "codeContextStaerLine": "136", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ignoreInstruction?: boolean;", - "mainBuggyLine": "136" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.convertxml.d.ts", - "codeContextStaerLine": "158", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ignoreAttributes?: boolean;", - "mainBuggyLine": "158" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.convertxml.d.ts", - "codeContextStaerLine": "180", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ignoreComment?: boolean;", - "mainBuggyLine": "180" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.convertxml.d.ts", - "codeContextStaerLine": "202", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ignoreCDATA?: boolean;", - "mainBuggyLine": "202" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.convertxml.d.ts", - "codeContextStaerLine": "224", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ignoreDoctype?: boolean;", - "mainBuggyLine": "224" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.convertxml.d.ts", - "codeContextStaerLine": "246", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ignoreText?: boolean;", - "mainBuggyLine": "246" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.convertxml.d.ts", - "codeContextStaerLine": "268", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "declarationKey: string;", - "mainBuggyLine": "268" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.convertxml.d.ts", - "codeContextStaerLine": "290", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "instructionKey: string;", - "mainBuggyLine": "290" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.convertxml.d.ts", - "codeContextStaerLine": "312", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "attributesKey: string;", - "mainBuggyLine": "312" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.convertxml.d.ts", - "codeContextStaerLine": "334", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "textKey: string;", - "mainBuggyLine": "334" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.convertxml.d.ts", - "codeContextStaerLine": "356", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "cdataKey: string;", - "mainBuggyLine": "356" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.convertxml.d.ts", - "codeContextStaerLine": "378", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "doctypeKey: string;", - "mainBuggyLine": "378" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.convertxml.d.ts", - "codeContextStaerLine": "400", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "commentKey: string;", - "mainBuggyLine": "400" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.convertxml.d.ts", - "codeContextStaerLine": "422", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "parentKey: string;", - "mainBuggyLine": "422" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.convertxml.d.ts", - "codeContextStaerLine": "444", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "typeKey: string;", - "mainBuggyLine": "444" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.convertxml.d.ts", - "codeContextStaerLine": "466", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "nameKey: string;", - "mainBuggyLine": "466" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.convertxml.d.ts", - "codeContextStaerLine": "488", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "elementsKey: string;", - "mainBuggyLine": "488" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.convertxml.d.ts", - "codeContextStaerLine": "526", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "convert(xml: string, options?: ConvertOptions): Object;", - "mainBuggyLine": "526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.cooperate.d.ts", - "codeContextStaerLine": "683", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_cooperateMouse] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'cooperateMouse', networkId: string, callback: Callback): void;", - "mainBuggyLine": "683" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.cooperate.d.ts", - "codeContextStaerLine": "701", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_cooperateMouse] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'cooperateMouse', networkId: string, callback?: Callback): void;", - "mainBuggyLine": "701" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.curves.d.ts", - "codeContextStaerLine": "459", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function init(curve?: Curve): string;", - "mainBuggyLine": "459" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.curves.d.ts", - "codeContextStaerLine": "525", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function steps(count: number, end: boolean): string;", - "mainBuggyLine": "525" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.curves.d.ts", - "codeContextStaerLine": "585", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function cubicBezier(x1: number, y1: number, x2: number, y2: number): string;", - "mainBuggyLine": "585" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.curves.d.ts", - "codeContextStaerLine": "640", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function spring(velocity: number, mass: number, stiffness: number, damping: number): string;", - "mainBuggyLine": "640" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.cloudExtension.d.ts", - "codeContextStaerLine": "41", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface CloudAsset", - "mainBuggyLine": "41" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.cloudExtension.d.ts", - "codeContextStaerLine": "70", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type CloudAssets = Array;", - "mainBuggyLine": "70" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.cloudExtension.d.ts", - "codeContextStaerLine": "79", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type CloudType = null | number | string | boolean | Uint8Array | CloudAsset | CloudAssets;", - "mainBuggyLine": "79" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.commonType.d.ts", - "codeContextStaerLine": "235", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type Assets = Array;", - "mainBuggyLine": "235" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.commonType.d.ts", - "codeContextStaerLine": "244", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type ValueType = null | number | string | boolean | Uint8Array | Asset | Assets;", - "mainBuggyLine": "244" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.commonType.d.ts", - "codeContextStaerLine": "253", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type ValuesBucket = Record;", - "mainBuggyLine": "253" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataAbility.d.ts", - "codeContextStaerLine": "380", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type ValueType = number | string | boolean;", - "mainBuggyLine": "380" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "57", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isProxy?: boolean;", - "mainBuggyLine": "57" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "185", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "subscriberId: string;", - "mainBuggyLine": "185" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "195", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleNameOfOwner: string;", - "mainBuggyLine": "195" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "216", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "key: string;", - "mainBuggyLine": "216" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "226", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "data: string | ArrayBuffer;", - "mainBuggyLine": "226" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "235", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "subscriberId: string;", - "mainBuggyLine": "235" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "256", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uri: string;", - "mainBuggyLine": "256" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "265", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "templateId: TemplateId;", - "mainBuggyLine": "265" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "276", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "data: Array;", - "mainBuggyLine": "276" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "297", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName: string;", - "mainBuggyLine": "297" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "306", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "data: Array;", - "mainBuggyLine": "306" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "352", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "scheduler: string;", - "mainBuggyLine": "352" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "372", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "key: string;", - "mainBuggyLine": "372" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "382", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "result: number;", - "mainBuggyLine": "382" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "403", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "values: ValuesBucket;", - "mainBuggyLine": "403" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "413", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "predicates: dataSharePredicates.DataSharePredicates;", - "mainBuggyLine": "413" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "494", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: ChangeType;", - "mainBuggyLine": "494" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "504", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uri: string;", - "mainBuggyLine": "504" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "513", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "values: Array;", - "mainBuggyLine": "513" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "597", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "on(event: 'dataChange', type:SubscriptionType, uri: string, callback: AsyncCallback): void;", - "mainBuggyLine": "597" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "615", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "off(event: 'dataChange', type:SubscriptionType, uri: string, callback?: AsyncCallback): void;", - "mainBuggyLine": "615" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "552", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_dataChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'dataChange', uri: string, callback: AsyncCallback): void;", - "mainBuggyLine": "552" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "580", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_dataChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'dataChange', uri: string, callback?: AsyncCallback): void;", - "mainBuggyLine": "580" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "597", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_dataChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(event: 'dataChange', type:SubscriptionType, uri: string, callback: AsyncCallback): void;", - "mainBuggyLine": "597" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "615", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_dataChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(event: 'dataChange', type:SubscriptionType, uri: string, callback?: AsyncCallback): void;", - "mainBuggyLine": "615" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "711", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_rdbDataChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(\n type: 'rdbDataChange',\n uris: Array,\n templateId: TemplateId,\n callback: AsyncCallback\n ): Array;", - "mainBuggyLine": "711" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "750", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_rdbDataChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(\n type: 'rdbDataChange',\n uris: Array,\n templateId: TemplateId,\n callback?: AsyncCallback\n ): Array;", - "mainBuggyLine": "750" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "789", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_publishedDataChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(\n type: 'publishedDataChange',\n uris: Array,\n subscriberId: string,\n callback: AsyncCallback\n ): Array;", - "mainBuggyLine": "789" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.dataShare.d.ts", - "codeContextStaerLine": "828", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_publishedDataChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(\n type: 'publishedDataChange',\n uris: Array,\n subscriberId: string,\n callback?: AsyncCallback\n ): Array;", - "mainBuggyLine": "828" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.DataShareResultSet.d.ts", - "codeContextStaerLine": "103", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "columnNames: Array;", - "mainBuggyLine": "103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.DataShareResultSet.d.ts", - "codeContextStaerLine": "114", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "columnCount: number;", - "mainBuggyLine": "114" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.DataShareResultSet.d.ts", - "codeContextStaerLine": "124", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rowCount: number;", - "mainBuggyLine": "124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.DataShareResultSet.d.ts", - "codeContextStaerLine": "135", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isClosed: boolean;", - "mainBuggyLine": "135" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "30", - "defectLevel": 2, - "defectType": "API_DOC_NAMESPACE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [namespace] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare namespace distributedData", - "mainBuggyLine": "30" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "39", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface KVManagerConfig", - "mainBuggyLine": "39" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "46", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "userInfo: UserInfo;", - "mainBuggyLine": "46" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName: string;", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "68", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface UserInfo", - "mainBuggyLine": "68" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "75", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "userId?: string;", - "mainBuggyLine": "75" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "83", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "userType?: UserType;", - "mainBuggyLine": "83" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "93", - "defectLevel": 2, - "defectType": "API_DOC_ENUM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [enum] tag is missing.", - "language": "ts", - "mainBuggyCode": " enum UserType", - "mainBuggyLine": "93" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "111", - "defectLevel": 2, - "defectType": "API_DOC_NAMESPACE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [namespace] tag is missing.", - "language": "ts", - "mainBuggyCode": " namespace Constants", - "mainBuggyLine": "111" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "177", - "defectLevel": 2, - "defectType": "API_DOC_ENUM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [enum] tag is missing.", - "language": "ts", - "mainBuggyCode": " enum ValueType", - "mainBuggyLine": "177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "241", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface Value", - "mainBuggyLine": "241" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "252", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "type: ValueType;", - "mainBuggyLine": "252" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "260", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: Uint8Array | string | number | boolean;", - "mainBuggyLine": "260" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "271", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface Entry", - "mainBuggyLine": "271" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "279", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "key: string;", - "mainBuggyLine": "279" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "287", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: Value;", - "mainBuggyLine": "287" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "301", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ChangeNotification", - "mainBuggyLine": "301" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "309", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "insertEntries: Entry[];", - "mainBuggyLine": "309" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "317", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "updateEntries: Entry[];", - "mainBuggyLine": "317" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "325", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deleteEntries: Entry[];", - "mainBuggyLine": "325" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "333", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "333" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "344", - "defectLevel": 2, - "defectType": "API_DOC_ENUM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [enum] tag is missing.", - "language": "ts", - "mainBuggyCode": " enum SyncMode", - "mainBuggyLine": "344" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "379", - "defectLevel": 2, - "defectType": "API_DOC_ENUM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [enum] tag is missing.", - "language": "ts", - "mainBuggyCode": " enum SubscribeType", - "mainBuggyLine": "379" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "416", - "defectLevel": 2, - "defectType": "API_DOC_ENUM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [enum] tag is missing.", - "language": "ts", - "mainBuggyCode": " enum KVStoreType", - "mainBuggyLine": "416" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "452", - "defectLevel": 2, - "defectType": "API_DOC_ENUM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [enum] tag is missing.", - "language": "ts", - "mainBuggyCode": " enum SecurityLevel", - "mainBuggyLine": "452" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "528", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface Options", - "mainBuggyLine": "528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "536", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "createIfMissing?: boolean;", - "mainBuggyLine": "536" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "544", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "encrypt?: boolean;", - "mainBuggyLine": "544" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "552", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "backup?: boolean;", - "mainBuggyLine": "552" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "561", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "autoSync?: boolean;", - "mainBuggyLine": "561" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "569", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "kvStoreType?: KVStoreType;", - "mainBuggyLine": "569" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "577", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "securityLevel?: SecurityLevel;", - "mainBuggyLine": "577" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "585", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "schema?: Schema;", - "mainBuggyLine": "585" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "617", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "root: FieldNode;", - "mainBuggyLine": "617" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "626", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "indexes: Array;", - "mainBuggyLine": "626" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "635", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "mode: number;", - "mainBuggyLine": "635" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "644", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "skip: number;", - "mainBuggyLine": "644" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "671", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "constructor(name: string)", - "mainBuggyLine": "671" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "685", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "appendChild(child: FieldNode): boolean;", - "mainBuggyLine": "685" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "685", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "appendChild(child: FieldNode): boolean;", - "mainBuggyLine": "685" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "695", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "default: string;", - "mainBuggyLine": "695" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "704", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "nullable: boolean;", - "mainBuggyLine": "704" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "713", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: number;", - "mainBuggyLine": "713" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "727", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface KvStoreResultSet", - "mainBuggyLine": "727" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "737", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "getCount(): number;", - "mainBuggyLine": "737" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "748", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "getPosition(): number;", - "mainBuggyLine": "748" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "761", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "moveToFirst(): boolean;", - "mainBuggyLine": "761" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "774", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "moveToLast(): boolean;", - "mainBuggyLine": "774" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "787", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "moveToNext(): boolean;", - "mainBuggyLine": "787" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "800", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "moveToPrevious(): boolean;", - "mainBuggyLine": "800" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "816", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "move(offset: number): boolean;", - "mainBuggyLine": "816" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "816", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "move(offset: number): boolean;", - "mainBuggyLine": "816" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "828", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "moveToPosition(position: number): boolean;", - "mainBuggyLine": "828" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "828", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "moveToPosition(position: number): boolean;", - "mainBuggyLine": "828" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "839", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "isFirst(): boolean;", - "mainBuggyLine": "839" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "850", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "isLast(): boolean;", - "mainBuggyLine": "850" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "861", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "isBeforeFirst(): boolean;", - "mainBuggyLine": "861" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "872", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "isAfterLast(): boolean;", - "mainBuggyLine": "872" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "883", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "getEntry(): Entry;", - "mainBuggyLine": "883" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "919", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "reset(): Query;", - "mainBuggyLine": "919" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "933", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "equalTo(field: string, value: number | string | boolean): Query;", - "mainBuggyLine": "933" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "933", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "equalTo(field: string, value: number | string | boolean): Query;", - "mainBuggyLine": "933" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "933", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "equalTo(field: string, value: number | string | boolean): Query;", - "mainBuggyLine": "933" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "947", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "notEqualTo(field: string, value: number | string | boolean): Query;", - "mainBuggyLine": "947" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "947", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "notEqualTo(field: string, value: number | string | boolean): Query;", - "mainBuggyLine": "947" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "947", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "notEqualTo(field: string, value: number | string | boolean): Query;", - "mainBuggyLine": "947" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "962", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "greaterThan(field: string, value: number | string | boolean): Query;", - "mainBuggyLine": "962" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "962", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "greaterThan(field: string, value: number | string | boolean): Query;", - "mainBuggyLine": "962" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "962", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "greaterThan(field: string, value: number | string | boolean): Query;", - "mainBuggyLine": "962" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "976", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "lessThan(field: string, value: number | string): Query;", - "mainBuggyLine": "976" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "976", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "lessThan(field: string, value: number | string): Query;", - "mainBuggyLine": "976" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "976", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "lessThan(field: string, value: number | string): Query;", - "mainBuggyLine": "976" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "991", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "greaterThanOrEqualTo(field: string, value: number | string): Query;", - "mainBuggyLine": "991" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "991", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "greaterThanOrEqualTo(field: string, value: number | string): Query;", - "mainBuggyLine": "991" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "991", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "greaterThanOrEqualTo(field: string, value: number | string): Query;", - "mainBuggyLine": "991" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1006", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "lessThanOrEqualTo(field: string, value: number | string): Query;", - "mainBuggyLine": "1006" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1006", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "lessThanOrEqualTo(field: string, value: number | string): Query;", - "mainBuggyLine": "1006" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1006", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "lessThanOrEqualTo(field: string, value: number | string): Query;", - "mainBuggyLine": "1006" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1019", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "isNull(field: string): Query;", - "mainBuggyLine": "1019" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1019", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "isNull(field: string): Query;", - "mainBuggyLine": "1019" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1033", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "inNumber(field: string, valueList: number[]): Query;", - "mainBuggyLine": "1033" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1033", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "inNumber(field: string, valueList: number[]): Query;", - "mainBuggyLine": "1033" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1033", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "inNumber(field: string, valueList: number[]): Query;", - "mainBuggyLine": "1033" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1047", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "inString(field: string, valueList: string[]): Query;", - "mainBuggyLine": "1047" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1047", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "inString(field: string, valueList: string[]): Query;", - "mainBuggyLine": "1047" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1047", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "inString(field: string, valueList: string[]): Query;", - "mainBuggyLine": "1047" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1061", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "notInNumber(field: string, valueList: number[]): Query;", - "mainBuggyLine": "1061" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1061", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "notInNumber(field: string, valueList: number[]): Query;", - "mainBuggyLine": "1061" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1061", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "notInNumber(field: string, valueList: number[]): Query;", - "mainBuggyLine": "1061" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1075", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "notInString(field: string, valueList: string[]): Query;", - "mainBuggyLine": "1075" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1075", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "notInString(field: string, valueList: string[]): Query;", - "mainBuggyLine": "1075" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1075", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "notInString(field: string, valueList: string[]): Query;", - "mainBuggyLine": "1075" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1089", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "like(field: string, value: string): Query;", - "mainBuggyLine": "1089" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1089", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "like(field: string, value: string): Query;", - "mainBuggyLine": "1089" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1089", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "like(field: string, value: string): Query;", - "mainBuggyLine": "1089" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1103", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "unlike(field: string, value: string): Query;", - "mainBuggyLine": "1103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1103", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "unlike(field: string, value: string): Query;", - "mainBuggyLine": "1103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1103", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "unlike(field: string, value: string): Query;", - "mainBuggyLine": "1103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1116", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "and(): Query;", - "mainBuggyLine": "1116" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1129", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "or(): Query;", - "mainBuggyLine": "1129" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1142", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "orderByAsc(field: string): Query;", - "mainBuggyLine": "1142" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1142", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "orderByAsc(field: string): Query;", - "mainBuggyLine": "1142" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1155", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "orderByDesc(field: string): Query;", - "mainBuggyLine": "1155" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1155", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "orderByDesc(field: string): Query;", - "mainBuggyLine": "1155" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1168", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "limit(total: number, offset: number): Query;", - "mainBuggyLine": "1168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1168", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "limit(total: number, offset: number): Query;", - "mainBuggyLine": "1168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1168", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "limit(total: number, offset: number): Query;", - "mainBuggyLine": "1168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1181", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "isNotNull(field: string): Query;", - "mainBuggyLine": "1181" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1181", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "isNotNull(field: string): Query;", - "mainBuggyLine": "1181" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1195", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "beginGroup(): Query;", - "mainBuggyLine": "1195" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1209", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "endGroup(): Query;", - "mainBuggyLine": "1209" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1222", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "prefixKey(prefix: string): Query;", - "mainBuggyLine": "1222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1222", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "prefixKey(prefix: string): Query;", - "mainBuggyLine": "1222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1235", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "setSuggestIndex(index: string): Query;", - "mainBuggyLine": "1235" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1235", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "setSuggestIndex(index: string): Query;", - "mainBuggyLine": "1235" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1248", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "deviceId(deviceId: string): Query;", - "mainBuggyLine": "1248" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1248", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "deviceId(deviceId: string): Query;", - "mainBuggyLine": "1248" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1262", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "getSqlLike(): string;", - "mainBuggyLine": "1262" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1280", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface KVStore", - "mainBuggyLine": "1280" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1296", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "put(key: string, value: Uint8Array | string | number | boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "1296" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1296", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "put(key: string, value: Uint8Array | string | number | boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "1296" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1296", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "put(key: string, value: Uint8Array | string | number | boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "1296" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1297", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "put(key: string, value: Uint8Array | string | number | boolean): Promise;", - "mainBuggyLine": "1297" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1297", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "put(key: string, value: Uint8Array | string | number | boolean): Promise;", - "mainBuggyLine": "1297" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1312", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "delete(key: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1312" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1312", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "delete(key: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1312" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1313", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "delete(key: string): Promise;", - "mainBuggyLine": "1313" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1313", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "delete(key: string): Promise;", - "mainBuggyLine": "1313" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1329", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "on(event: 'dataChange', type: SubscribeType, listener: Callback): void;", - "mainBuggyLine": "1329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1342", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "on(event: 'syncComplete', syncCallback: Callback>): void;", - "mainBuggyLine": "1342" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1356", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "off(event: 'dataChange', listener?: Callback): void;", - "mainBuggyLine": "1356" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1370", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "off(event: 'syncComplete', syncCallback?: Callback>): void;", - "mainBuggyLine": "1370" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1382", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "putBatch(entries: Entry[], callback: AsyncCallback): void;", - "mainBuggyLine": "1382" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1382", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "putBatch(entries: Entry[], callback: AsyncCallback): void;", - "mainBuggyLine": "1382" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1383", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "putBatch(entries: Entry[]): Promise;", - "mainBuggyLine": "1383" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1383", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "putBatch(entries: Entry[]): Promise;", - "mainBuggyLine": "1383" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1395", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "deleteBatch(keys: string[], callback: AsyncCallback): void;", - "mainBuggyLine": "1395" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1395", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "deleteBatch(keys: string[], callback: AsyncCallback): void;", - "mainBuggyLine": "1395" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1396", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "deleteBatch(keys: string[]): Promise;", - "mainBuggyLine": "1396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1396", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "deleteBatch(keys: string[]): Promise;", - "mainBuggyLine": "1396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1409", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "startTransaction(callback: AsyncCallback): void;", - "mainBuggyLine": "1409" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1410", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "startTransaction(): Promise;", - "mainBuggyLine": "1410" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1410", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "startTransaction(): Promise;", - "mainBuggyLine": "1410" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1422", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "commit(callback: AsyncCallback): void;", - "mainBuggyLine": "1422" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1423", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "commit(): Promise;", - "mainBuggyLine": "1423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1423", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "commit(): Promise;", - "mainBuggyLine": "1423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1434", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "rollback(callback: AsyncCallback): void;", - "mainBuggyLine": "1434" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1435", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "rollback(): Promise;", - "mainBuggyLine": "1435" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1435", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "rollback(): Promise;", - "mainBuggyLine": "1435" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1448", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "enableSync(enabled: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "1448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1448", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "enableSync(enabled: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "1448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1449", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "enableSync(enabled: boolean): Promise;", - "mainBuggyLine": "1449" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1449", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "enableSync(enabled: boolean): Promise;", - "mainBuggyLine": "1449" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1464", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "setSyncRange(localLabels: string[], remoteSupportLabels: string[], callback: AsyncCallback): void;", - "mainBuggyLine": "1464" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1464", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "setSyncRange(localLabels: string[], remoteSupportLabels: string[], callback: AsyncCallback): void;", - "mainBuggyLine": "1464" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1464", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "setSyncRange(localLabels: string[], remoteSupportLabels: string[], callback: AsyncCallback): void;", - "mainBuggyLine": "1464" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1465", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "setSyncRange(localLabels: string[], remoteSupportLabels: string[]): Promise;", - "mainBuggyLine": "1465" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1465", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "setSyncRange(localLabels: string[], remoteSupportLabels: string[]): Promise;", - "mainBuggyLine": "1465" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1484", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface SingleKVStore", - "mainBuggyLine": "1484" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1484", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface SingleKVStore", - "mainBuggyLine": "1484" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1496", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "get(key: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1496" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1496", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "get(key: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1496" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1497", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "get(key: string): Promise;", - "mainBuggyLine": "1497" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1497", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "get(key: string): Promise;", - "mainBuggyLine": "1497" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1511", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "getEntries(keyPrefix: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1511" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1511", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getEntries(keyPrefix: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1511" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1511", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_01", - "description": "API check error of [wrong value]: The [returns] tag was used incorrectly. The returns tag should not be used when the return type is void.", - "language": "ts", - "mainBuggyCode": "getEntries(keyPrefix: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1511" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1512", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "getEntries(keyPrefix: string): Promise;", - "mainBuggyLine": "1512" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1512", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "getEntries(keyPrefix: string): Promise;", - "mainBuggyLine": "1512" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1526", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "getEntries(query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1526", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getEntries(query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1526", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_01", - "description": "API check error of [wrong value]: The [returns] tag was used incorrectly. The returns tag should not be used when the return type is void.", - "language": "ts", - "mainBuggyCode": "getEntries(query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1527", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "getEntries(query: Query): Promise;", - "mainBuggyLine": "1527" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1527", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "getEntries(query: Query): Promise;", - "mainBuggyLine": "1527" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1544", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSet(keyPrefix: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1544" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1544", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getResultSet(keyPrefix: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1544" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1545", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSet(keyPrefix: string): Promise;", - "mainBuggyLine": "1545" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1545", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSet(keyPrefix: string): Promise;", - "mainBuggyLine": "1545" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1558", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSet(query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1558" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1558", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getResultSet(query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1558" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1559", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSet(query: Query): Promise;", - "mainBuggyLine": "1559" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1559", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSet(query: Query): Promise;", - "mainBuggyLine": "1559" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1572", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "closeResultSet(resultSet: KvStoreResultSet, callback: AsyncCallback): void;", - "mainBuggyLine": "1572" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1572", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "closeResultSet(resultSet: KvStoreResultSet, callback: AsyncCallback): void;", - "mainBuggyLine": "1572" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1573", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "closeResultSet(resultSet: KvStoreResultSet): Promise;", - "mainBuggyLine": "1573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1573", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "closeResultSet(resultSet: KvStoreResultSet): Promise;", - "mainBuggyLine": "1573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1587", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSize(query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1587" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1587", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getResultSize(query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1587" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1587", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_01", - "description": "API check error of [wrong value]: The [returns] tag was used incorrectly. The returns tag should not be used when the return type is void.", - "language": "ts", - "mainBuggyCode": "getResultSize(query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1587" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1588", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSize(query: Query): Promise;", - "mainBuggyLine": "1588" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1588", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSize(query: Query): Promise;", - "mainBuggyLine": "1588" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1598", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "removeDeviceData(deviceId: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1598" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1599", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "removeDeviceData(deviceId: string): Promise;", - "mainBuggyLine": "1599" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1599", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "removeDeviceData(deviceId: string): Promise;", - "mainBuggyLine": "1599" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1615", - "defectLevel": 2, - "defectType": "API_DOC_THROWS_03", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [throws] labels.", - "language": "ts", - "mainBuggyCode": "sync(deviceIds: string[], mode: SyncMode, delayMs?: number): void;", - "mainBuggyLine": "1615" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1615", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "sync(deviceIds: string[], mode: SyncMode, delayMs?: number): void;", - "mainBuggyLine": "1615" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1615", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "sync(deviceIds: string[], mode: SyncMode, delayMs?: number): void;", - "mainBuggyLine": "1615" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1615", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [3] [param] tag is incorrect. Please check if it matches the type of the [3] parameter.", - "language": "ts", - "mainBuggyCode": "sync(deviceIds: string[], mode: SyncMode, delayMs?: number): void;", - "mainBuggyLine": "1615" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1630", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "on(event: 'dataChange', type: SubscribeType, listener: Callback): void;", - "mainBuggyLine": "1630" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1643", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "on(event: 'syncComplete', syncCallback: Callback>): void;", - "mainBuggyLine": "1643" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1657", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "off(event: 'dataChange', listener?: Callback): void;", - "mainBuggyLine": "1657" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1668", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "off(event: 'syncComplete', syncCallback?: Callback>): void;", - "mainBuggyLine": "1668" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1681", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "setSyncParam(defaultAllowedDelayMs: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1681" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1681", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "setSyncParam(defaultAllowedDelayMs: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1681" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1682", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "setSyncParam(defaultAllowedDelayMs: number): Promise;", - "mainBuggyLine": "1682" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1682", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "setSyncParam(defaultAllowedDelayMs: number): Promise;", - "mainBuggyLine": "1682" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1695", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "getSecurityLevel(callback: AsyncCallback): void;", - "mainBuggyLine": "1695" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1695", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_01", - "description": "API check error of [wrong value]: The [returns] tag was used incorrectly. The returns tag should not be used when the return type is void.", - "language": "ts", - "mainBuggyCode": "getSecurityLevel(callback: AsyncCallback): void;", - "mainBuggyLine": "1695" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1696", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "getSecurityLevel(): Promise;", - "mainBuggyLine": "1696" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1696", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "getSecurityLevel(): Promise;", - "mainBuggyLine": "1696" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1712", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface DeviceKVStore", - "mainBuggyLine": "1712" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1712", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface DeviceKVStore", - "mainBuggyLine": "1712" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1726", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "get(deviceId: string, key: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1726" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1726", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "get(deviceId: string, key: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1726" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1726", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "get(deviceId: string, key: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1726" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1726", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_01", - "description": "API check error of [wrong value]: The [returns] tag was used incorrectly. The returns tag should not be used when the return type is void.", - "language": "ts", - "mainBuggyCode": "get(deviceId: string, key: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1726" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1727", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "get(deviceId: string, key: string): Promise;", - "mainBuggyLine": "1727" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1727", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "get(deviceId: string, key: string): Promise;", - "mainBuggyLine": "1727" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1742", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "getEntries(deviceId: string, keyPrefix: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1742" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1742", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getEntries(deviceId: string, keyPrefix: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1742" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1742", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "getEntries(deviceId: string, keyPrefix: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1742" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1742", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_01", - "description": "API check error of [wrong value]: The [returns] tag was used incorrectly. The returns tag should not be used when the return type is void.", - "language": "ts", - "mainBuggyCode": "getEntries(deviceId: string, keyPrefix: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1742" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1743", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "getEntries(deviceId: string, keyPrefix: string): Promise;", - "mainBuggyLine": "1743" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1743", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "getEntries(deviceId: string, keyPrefix: string): Promise;", - "mainBuggyLine": "1743" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1757", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "getEntries(query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1757" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1757", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getEntries(query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1757" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1757", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_01", - "description": "API check error of [wrong value]: The [returns] tag was used incorrectly. The returns tag should not be used when the return type is void.", - "language": "ts", - "mainBuggyCode": "getEntries(query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1757" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1758", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "getEntries(query: Query): Promise;", - "mainBuggyLine": "1758" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1758", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "getEntries(query: Query): Promise;", - "mainBuggyLine": "1758" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1771", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "getEntries(deviceId: string, query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1771" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1771", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getEntries(deviceId: string, query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1771" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1771", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "getEntries(deviceId: string, query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1771" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1771", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_01", - "description": "API check error of [wrong value]: The [returns] tag was used incorrectly. The returns tag should not be used when the return type is void.", - "language": "ts", - "mainBuggyCode": "getEntries(deviceId: string, query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1771" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1772", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "getEntries(deviceId: string, query: Query): Promise;", - "mainBuggyLine": "1772" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1772", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "getEntries(deviceId: string, query: Query): Promise;", - "mainBuggyLine": "1772" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1792", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSet(deviceId: string, keyPrefix: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1792" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1792", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getResultSet(deviceId: string, keyPrefix: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1792" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1792", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "getResultSet(deviceId: string, keyPrefix: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1792" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1792", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_01", - "description": "API check error of [wrong value]: The [returns] tag was used incorrectly. The returns tag should not be used when the return type is void.", - "language": "ts", - "mainBuggyCode": "getResultSet(deviceId: string, keyPrefix: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1792" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1793", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSet(deviceId: string, keyPrefix: string): Promise;", - "mainBuggyLine": "1793" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1793", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSet(deviceId: string, keyPrefix: string): Promise;", - "mainBuggyLine": "1793" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1807", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSet(query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1807" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1807", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getResultSet(query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1807" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1807", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_01", - "description": "API check error of [wrong value]: The [returns] tag was used incorrectly. The returns tag should not be used when the return type is void.", - "language": "ts", - "mainBuggyCode": "getResultSet(query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1807" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1808", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSet(query: Query): Promise;", - "mainBuggyLine": "1808" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1808", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSet(query: Query): Promise;", - "mainBuggyLine": "1808" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1821", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSet(deviceId: string, query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1821" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1821", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getResultSet(deviceId: string, query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1821" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1821", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "getResultSet(deviceId: string, query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1821" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1821", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_01", - "description": "API check error of [wrong value]: The [returns] tag was used incorrectly. The returns tag should not be used when the return type is void.", - "language": "ts", - "mainBuggyCode": "getResultSet(deviceId: string, query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1821" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1822", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSet(deviceId: string, query: Query): Promise;", - "mainBuggyLine": "1822" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1822", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSet(deviceId: string, query: Query): Promise;", - "mainBuggyLine": "1822" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1835", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "closeResultSet(resultSet: KvStoreResultSet, callback: AsyncCallback): void;", - "mainBuggyLine": "1835" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1835", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "closeResultSet(resultSet: KvStoreResultSet, callback: AsyncCallback): void;", - "mainBuggyLine": "1835" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1836", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "closeResultSet(resultSet: KvStoreResultSet): Promise;", - "mainBuggyLine": "1836" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1836", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "closeResultSet(resultSet: KvStoreResultSet): Promise;", - "mainBuggyLine": "1836" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1850", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSize(query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1850" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1850", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getResultSize(query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1850" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1850", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_01", - "description": "API check error of [wrong value]: The [returns] tag was used incorrectly. The returns tag should not be used when the return type is void.", - "language": "ts", - "mainBuggyCode": "getResultSize(query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1850" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1851", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSize(query: Query): Promise;", - "mainBuggyLine": "1851" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1851", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSize(query: Query): Promise;", - "mainBuggyLine": "1851" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1864", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSize(deviceId: string, query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1864" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1864", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getResultSize(deviceId: string, query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1864" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1864", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "getResultSize(deviceId: string, query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1864" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1864", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_01", - "description": "API check error of [wrong value]: The [returns] tag was used incorrectly. The returns tag should not be used when the return type is void.", - "language": "ts", - "mainBuggyCode": "getResultSize(deviceId: string, query: Query, callback: AsyncCallback): void;", - "mainBuggyLine": "1864" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1865", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSize(deviceId: string, query: Query): Promise;", - "mainBuggyLine": "1865" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1865", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "getResultSize(deviceId: string, query: Query): Promise;", - "mainBuggyLine": "1865" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1880", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "removeDeviceData(deviceId: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1880" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1880", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "removeDeviceData(deviceId: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1880" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1881", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "removeDeviceData(deviceId: string): Promise;", - "mainBuggyLine": "1881" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1881", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "removeDeviceData(deviceId: string): Promise;", - "mainBuggyLine": "1881" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1900", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "sync(deviceIds: string[], mode: SyncMode, delayMs?: number): void;", - "mainBuggyLine": "1900" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1916", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "on(event: 'dataChange', type: SubscribeType, listener: Callback): void;", - "mainBuggyLine": "1916" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1931", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "on(event: 'syncComplete', syncCallback: Callback>): void;", - "mainBuggyLine": "1931" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1945", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "off(event: 'dataChange', listener?: Callback): void;", - "mainBuggyLine": "1945" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1956", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "off(event: 'syncComplete', syncCallback?: Callback>): void;", - "mainBuggyLine": "1956" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1974", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "function createKVManager(config: KVManagerConfig, callback: AsyncCallback): void;", - "mainBuggyLine": "1974" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1974", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "function createKVManager(config: KVManagerConfig, callback: AsyncCallback): void;", - "mainBuggyLine": "1974" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1974", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_01", - "description": "API check error of [wrong value]: The [returns] tag was used incorrectly. The returns tag should not be used when the return type is void.", - "language": "ts", - "mainBuggyCode": "function createKVManager(config: KVManagerConfig, callback: AsyncCallback): void;", - "mainBuggyLine": "1974" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1975", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "function createKVManager(config: KVManagerConfig): Promise;", - "mainBuggyLine": "1975" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1975", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "function createKVManager(config: KVManagerConfig): Promise;", - "mainBuggyLine": "1975" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "1986", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface KVManager", - "mainBuggyLine": "1986" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "2001", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "getKVStore(storeId: string, options: Options): Promise;", - "mainBuggyLine": "2001" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "2002", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "getKVStore(storeId: string, options: Options, callback: AsyncCallback): void;", - "mainBuggyLine": "2002" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "2002", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "getKVStore(storeId: string, options: Options, callback: AsyncCallback): void;", - "mainBuggyLine": "2002" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "2025", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "closeKVStore(appId: string, storeId: string, kvStore: KVStore, callback: AsyncCallback): void;", - "mainBuggyLine": "2025" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "2026", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "closeKVStore(appId: string, storeId: string, kvStore: KVStore): Promise;", - "mainBuggyLine": "2026" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "2026", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "closeKVStore(appId: string, storeId: string, kvStore: KVStore): Promise;", - "mainBuggyLine": "2026" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "2046", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "deleteKVStore(appId: string, storeId: string, callback: AsyncCallback): void;", - "mainBuggyLine": "2046" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "2047", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "deleteKVStore(appId: string, storeId: string): Promise;", - "mainBuggyLine": "2047" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "2047", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "deleteKVStore(appId: string, storeId: string): Promise;", - "mainBuggyLine": "2047" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "2062", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "getAllKVStoreId(appId: string, callback: AsyncCallback): void;", - "mainBuggyLine": "2062" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "2062", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_01", - "description": "API check error of [wrong value]: The [returns] tag was used incorrectly. The returns tag should not be used when the return type is void.", - "language": "ts", - "mainBuggyCode": "getAllKVStoreId(appId: string, callback: AsyncCallback): void;", - "mainBuggyLine": "2062" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "2063", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "getAllKVStoreId(appId: string): Promise;", - "mainBuggyLine": "2063" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "2063", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "getAllKVStoreId(appId: string): Promise;", - "mainBuggyLine": "2063" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "2075", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "on(event: 'distributedDataServiceDie', deathCallback: Callback): void;", - "mainBuggyLine": "2075" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts", - "codeContextStaerLine": "2087", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "off(event: 'distributedDataServiceDie', deathCallback?: Callback): void;", - "mainBuggyLine": "2087" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedDataObject.d.ts", - "codeContextStaerLine": "137", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "sessionId: string;", - "mainBuggyLine": "137" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedDataObject.d.ts", - "codeContextStaerLine": "145", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "version: number;", - "mainBuggyLine": "145" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedDataObject.d.ts", - "codeContextStaerLine": "155", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "155" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedDataObject.d.ts", - "codeContextStaerLine": "173", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "sessionId: string;", - "mainBuggyLine": "173" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedDataObject.d.ts", - "codeContextStaerLine": "212", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "on(type: 'change', callback: (sessionId: string, fields: Array) => void): void;", - "mainBuggyLine": "212" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedDataObject.d.ts", - "codeContextStaerLine": "228", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "off(type: 'change', callback?: (sessionId: string, fields: Array) => void): void;", - "mainBuggyLine": "228" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedDataObject.d.ts", - "codeContextStaerLine": "246", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "on(\r\n type: 'status',\r\n callback: (sessionId: string, networkId: string, status: 'online' | 'offline' ) => void\r\n ): void;", - "mainBuggyLine": "246" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedDataObject.d.ts", - "codeContextStaerLine": "268", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "off(\r\n type: 'status',\r\n callback?: (sessionId: string, networkId: string, status: 'online' | 'offline' ) => void\r\n ): void;", - "mainBuggyLine": "268" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedDataObject.d.ts", - "codeContextStaerLine": "337", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "on(type: 'change', callback: (sessionId: string, fields: Array) => void ): void;", - "mainBuggyLine": "337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedDataObject.d.ts", - "codeContextStaerLine": "353", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "off(type: 'change', callback?: (sessionId: string, fields: Array) => void ): void;", - "mainBuggyLine": "353" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedDataObject.d.ts", - "codeContextStaerLine": "372", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "on(\r\n type: 'status',\r\n callback: (sessionId: string, networkId: string, status: 'online' | 'offline' ) => void\r\n ): void;", - "mainBuggyLine": "372" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedDataObject.d.ts", - "codeContextStaerLine": "394", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "off(\r\n type: 'status',\r\n callback?: (sessionId: string, networkId: string, status: 'online' | 'offline' ) => void\r\n ): void;", - "mainBuggyLine": "394" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "49", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName: string;", - "mainBuggyLine": "49" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "65", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "context: BaseContext;", - "mainBuggyLine": "65" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "82", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly MAX_KEY_LENGTH: number;", - "mainBuggyLine": "82" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "90", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly MAX_VALUE_LENGTH: number;", - "mainBuggyLine": "90" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "98", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly MAX_KEY_LENGTH_DEVICE: number;", - "mainBuggyLine": "98" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "106", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly MAX_STORE_ID_LENGTH: number;", - "mainBuggyLine": "106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "114", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly MAX_QUERY_LENGTH: number;", - "mainBuggyLine": "114" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "122", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly MAX_BATCH_SIZE: number;", - "mainBuggyLine": "122" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "198", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: ValueType;", - "mainBuggyLine": "198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "206", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: Uint8Array | string | number | boolean;", - "mainBuggyLine": "206" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "223", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "key: string;", - "mainBuggyLine": "223" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "231", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: Value;", - "mainBuggyLine": "231" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "251", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "insertEntries: Entry[];", - "mainBuggyLine": "251" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "259", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "updateEntries: Entry[];", - "mainBuggyLine": "259" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "267", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deleteEntries: Entry[];", - "mainBuggyLine": "267" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "275", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "275" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "428", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "createIfMissing?: boolean;", - "mainBuggyLine": "428" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "436", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "encrypt?: boolean;", - "mainBuggyLine": "436" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "444", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "backup?: boolean;", - "mainBuggyLine": "444" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "453", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "autoSync?: boolean;", - "mainBuggyLine": "453" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "461", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "kvStoreType?: KVStoreType;", - "mainBuggyLine": "461" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "469", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "securityLevel: SecurityLevel;", - "mainBuggyLine": "469" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "477", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "schema?: Schema;", - "mainBuggyLine": "477" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "502", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "root: FieldNode;", - "mainBuggyLine": "502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "510", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "indexes: Array;", - "mainBuggyLine": "510" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "518", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "mode: number;", - "mainBuggyLine": "518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "526", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "skip: number;", - "mainBuggyLine": "526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "570", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "default: string;", - "mainBuggyLine": "570" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "578", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "nullable: boolean;", - "mainBuggyLine": "578" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "586", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: number;", - "mainBuggyLine": "586" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts", - "codeContextStaerLine": "2248", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface DeviceKVStore", - "mainBuggyLine": "2248" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.preferences.d.ts", - "codeContextStaerLine": "82", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type ValueType = number | string | boolean | Array | Array | Array | Uint8Array | object | bigint;", - "mainBuggyLine": "82" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.preferences.d.ts", - "codeContextStaerLine": "187", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "187" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.preferences.d.ts", - "codeContextStaerLine": "204", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "dataGroupId?: string | null | undefined;", - "mainBuggyLine": "204" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.preferences.d.ts", - "codeContextStaerLine": "117", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [MAX_KEY_LENGTH] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const MAX_KEY_LENGTH: number;", - "mainBuggyLine": "117" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.preferences.d.ts", - "codeContextStaerLine": "152", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [MAX_VALUE_LENGTH] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const MAX_VALUE_LENGTH: number;", - "mainBuggyLine": "152" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.preferences.d.ts", - "codeContextStaerLine": "1791", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_dataChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'dataChange', keys: Array, callback: Callback>): void;", - "mainBuggyLine": "1791" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.preferences.d.ts", - "codeContextStaerLine": "1872", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_dataChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'dataChange', keys: Array, callback?: Callback>): void;", - "mainBuggyLine": "1872" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.rdb.d.ts", - "codeContextStaerLine": "133", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " enum SubscribeType", - "mainBuggyLine": "133" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.rdb.d.ts", - "codeContextStaerLine": "143", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "SUBSCRIBE_TYPE_REMOTE = 0", - "mainBuggyLine": "143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.rdb.d.ts", - "codeContextStaerLine": "491", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type ValueType = number | string | boolean;", - "mainBuggyLine": "491" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.rdb.d.ts", - "codeContextStaerLine": "501", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type ValuesBucket = { [key: string]: ValueType | Uint8Array | null };", - "mainBuggyLine": "501" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.rdb.d.ts", - "codeContextStaerLine": "513", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "513" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.rdb.d.ts", - "codeContextStaerLine": "513", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "513" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.rdb.d.ts", - "codeContextStaerLine": "940", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ResultSet = _ResultSet;", - "mainBuggyLine": "940" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.rdb.d.ts", - "codeContextStaerLine": "940", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ResultSet = _ResultSet;", - "mainBuggyLine": "940" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "121", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "121" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "130", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uri: string;", - "mainBuggyLine": "130" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "139", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "path: string;", - "mainBuggyLine": "139" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "148", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "createTime: string;", - "mainBuggyLine": "148" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "157", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "modifyTime: string;", - "mainBuggyLine": "157" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "166", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "size: string;", - "mainBuggyLine": "166" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "175", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "status?: AssetStatus;", - "mainBuggyLine": "175" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "211", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type ValueType = null | number | string | boolean | Uint8Array | Asset | Assets | Float32Array | bigint;", - "mainBuggyLine": "211" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "236", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type ValuesBucket = Record;", - "mainBuggyLine": "236" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "245", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type PRIKeyType = number | string;", - "mainBuggyLine": "245" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "263", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type ModifyTime = Map;", - "mainBuggyLine": "263" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "294", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "294" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "303", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "securityLevel: SecurityLevel;", - "mainBuggyLine": "303" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "311", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "encrypt?: boolean;", - "mainBuggyLine": "311" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "320", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "dataGroupId?: string;", - "mainBuggyLine": "320" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "429", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "total: number;", - "mainBuggyLine": "429" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "437", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "successful: number;", - "mainBuggyLine": "437" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "445", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "failed: number;", - "mainBuggyLine": "445" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "453", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "remained: number;", - "mainBuggyLine": "453" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "470", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "upload: Statistic;", - "mainBuggyLine": "470" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "478", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "download: Statistic;", - "mainBuggyLine": "478" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "568", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "schedule: Progress;", - "mainBuggyLine": "568" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "576", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "code: ProgressCode;", - "mainBuggyLine": "576" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "755", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " enum SubscribeType", - "mainBuggyLine": "755" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "763", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "SUBSCRIBE_TYPE_REMOTE = 0", - "mainBuggyLine": "763" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "772", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "SUBSCRIBE_TYPE_CLOUD", - "mainBuggyLine": "772" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "781", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "SUBSCRIBE_TYPE_CLOUD_DETAILS", - "mainBuggyLine": "781" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "807", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "DATA_CHANGE", - "mainBuggyLine": "807" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "816", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "ASSET_CHANGE", - "mainBuggyLine": "816" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "833", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "table: string;", - "mainBuggyLine": "833" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "841", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: ChangeType;", - "mainBuggyLine": "841" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "850", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "inserted: Array | Array;", - "mainBuggyLine": "850" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "859", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "updated: Array | Array;", - "mainBuggyLine": "859" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "868", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deleted: Array | Array;", - "mainBuggyLine": "868" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "879", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " enum DistributedType", - "mainBuggyLine": "879" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "887", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "DISTRIBUTED_DEVICE", - "mainBuggyLine": "887" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "896", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "DISTRIBUTED_CLOUD", - "mainBuggyLine": "896" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "953", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "autoSync: boolean;", - "mainBuggyLine": "953" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "1976", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "columnNames: Array;", - "mainBuggyLine": "1976" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "1995", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "columnCount: number;", - "mainBuggyLine": "1995" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "2010", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rowCount: number;", - "mainBuggyLine": "2010" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "2027", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rowIndex: number;", - "mainBuggyLine": "2027" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "2042", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isAtFirstRow: boolean;", - "mainBuggyLine": "2042" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "2057", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isAtLastRow: boolean;", - "mainBuggyLine": "2057" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "2072", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isEnded: boolean;", - "mainBuggyLine": "2072" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "2087", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isStarted: boolean;", - "mainBuggyLine": "2087" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "2104", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isClosed: boolean;", - "mainBuggyLine": "2104" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "3126", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "version: number;", - "mainBuggyLine": "3126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "6343", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_dataChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(event: 'dataChange', type: SubscribeType, observer: Callback>): void;", - "mainBuggyLine": "6343" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "6381", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_dataChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(event: 'dataChange', type: SubscribeType, observer: Callback> | Callback>): void;", - "mainBuggyLine": "6381" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "6412", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_string] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(event: string, interProcess: boolean, observer: Callback): void;", - "mainBuggyLine": "6412" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "6437", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_autoSyncProgress] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(event: 'autoSyncProgress', progress: Callback): void;", - "mainBuggyLine": "6437" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "6450", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_statistics] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(event: 'statistics', observer: Callback ): void;", - "mainBuggyLine": "6450" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "6479", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_dataChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(event: 'dataChange', type: SubscribeType, observer: Callback>): void;", - "mainBuggyLine": "6479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "6512", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_dataChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(\n event: 'dataChange',\n type: SubscribeType,\n observer?: Callback> | Callback>\n ): void;", - "mainBuggyLine": "6512" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "6547", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_string] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(event: string, interProcess: boolean, observer?: Callback): void;", - "mainBuggyLine": "6547" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "6572", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_autoSyncProgress] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(event: 'autoSyncProgress', progress?: Callback): void;", - "mainBuggyLine": "6572" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "6585", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_statistics] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(event: 'statistics', observer?: Callback ): void;", - "mainBuggyLine": "6585" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.data.relationalStore.d.ts", - "codeContextStaerLine": "6612", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [emit_string] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "emit(event: string): void;", - "mainBuggyLine": "6612" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "35", - "defectLevel": 2, - "defectType": "API_DOC_NAMESPACE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [namespace] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare namespace storage", - "mainBuggyLine": "35" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "50", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "function getStorageSync(path: string): Storage;", - "mainBuggyLine": "50" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "50", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "function getStorageSync(path: string): Storage;", - "mainBuggyLine": "50" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "50", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "function getStorageSync(path: string): Storage;", - "mainBuggyLine": "50" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "51", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "function getStorage(path: string, callback: AsyncCallback): void;", - "mainBuggyLine": "51" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "51", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "function getStorage(path: string, callback: AsyncCallback): void;", - "mainBuggyLine": "51" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "52", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "function getStorage(path: string): Promise;", - "mainBuggyLine": "52" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "52", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "function getStorage(path: string): Promise;", - "mainBuggyLine": "52" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "69", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "function deleteStorageSync(path: string): void;", - "mainBuggyLine": "69" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "69", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "function deleteStorageSync(path: string): void;", - "mainBuggyLine": "69" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "70", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "function deleteStorage(path: string, callback: AsyncCallback): void;", - "mainBuggyLine": "70" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "70", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "function deleteStorage(path: string, callback: AsyncCallback): void;", - "mainBuggyLine": "70" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "71", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "function deleteStorage(path: string): Promise;", - "mainBuggyLine": "71" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "71", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "function deleteStorage(path: string): Promise;", - "mainBuggyLine": "71" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "87", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "function removeStorageFromCacheSync(path: string): void;", - "mainBuggyLine": "87" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "87", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "function removeStorageFromCacheSync(path: string): void;", - "mainBuggyLine": "87" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "88", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "function removeStorageFromCache(path: string, callback: AsyncCallback): void;", - "mainBuggyLine": "88" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "88", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "function removeStorageFromCache(path: string, callback: AsyncCallback): void;", - "mainBuggyLine": "88" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "89", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "function removeStorageFromCache(path: string): Promise;", - "mainBuggyLine": "89" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "89", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "function removeStorageFromCache(path: string): Promise;", - "mainBuggyLine": "89" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "105", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface Storage", - "mainBuggyLine": "105" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "119", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "getSync(key: string, defValue: ValueType): ValueType;", - "mainBuggyLine": "119" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "119", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getSync(key: string, defValue: ValueType): ValueType;", - "mainBuggyLine": "119" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "119", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "getSync(key: string, defValue: ValueType): ValueType;", - "mainBuggyLine": "119" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "119", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "getSync(key: string, defValue: ValueType): ValueType;", - "mainBuggyLine": "119" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "120", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "get(key: string, defValue: ValueType, callback: AsyncCallback): void;", - "mainBuggyLine": "120" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "120", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "get(key: string, defValue: ValueType, callback: AsyncCallback): void;", - "mainBuggyLine": "120" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "121", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "get(key: string, defValue: ValueType): Promise;", - "mainBuggyLine": "121" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "121", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "get(key: string, defValue: ValueType): Promise;", - "mainBuggyLine": "121" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "134", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "hasSync(key: string): boolean;", - "mainBuggyLine": "134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "134", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "hasSync(key: string): boolean;", - "mainBuggyLine": "134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "134", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "hasSync(key: string): boolean;", - "mainBuggyLine": "134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "135", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "has(key: string, callback: AsyncCallback): boolean;", - "mainBuggyLine": "135" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "135", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "has(key: string, callback: AsyncCallback): boolean;", - "mainBuggyLine": "135" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "136", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "has(key: string): Promise;", - "mainBuggyLine": "136" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "136", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "has(key: string): Promise;", - "mainBuggyLine": "136" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "152", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "putSync(key: string, value: ValueType): void;", - "mainBuggyLine": "152" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "152", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "putSync(key: string, value: ValueType): void;", - "mainBuggyLine": "152" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "152", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "putSync(key: string, value: ValueType): void;", - "mainBuggyLine": "152" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "153", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "put(key: string, value: ValueType, callback: AsyncCallback): void;", - "mainBuggyLine": "153" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "153", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "put(key: string, value: ValueType, callback: AsyncCallback): void;", - "mainBuggyLine": "153" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "154", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "put(key: string, value: ValueType): Promise;", - "mainBuggyLine": "154" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "154", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "put(key: string, value: ValueType): Promise;", - "mainBuggyLine": "154" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "169", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "deleteSync(key: string): void;", - "mainBuggyLine": "169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "169", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "deleteSync(key: string): void;", - "mainBuggyLine": "169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "170", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "delete(key: string, callback: AsyncCallback): void;", - "mainBuggyLine": "170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "170", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "delete(key: string, callback: AsyncCallback): void;", - "mainBuggyLine": "170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "171", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "delete(key: string): Promise;", - "mainBuggyLine": "171" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "171", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "delete(key: string): Promise;", - "mainBuggyLine": "171" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "184", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "clearSync(): void;", - "mainBuggyLine": "184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "185", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "clear(callback: AsyncCallback): void;", - "mainBuggyLine": "185" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "185", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "clear(callback: AsyncCallback): void;", - "mainBuggyLine": "185" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "186", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "clear(): Promise;", - "mainBuggyLine": "186" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "186", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "clear(): Promise;", - "mainBuggyLine": "186" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "196", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "flushSync(): void;", - "mainBuggyLine": "196" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "197", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "flush(callback: AsyncCallback): void;", - "mainBuggyLine": "197" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "197", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "flush(callback: AsyncCallback): void;", - "mainBuggyLine": "197" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "198", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "flush(): Promise;", - "mainBuggyLine": "198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "198", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "flush(): Promise;", - "mainBuggyLine": "198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "209", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "on(type: 'change', callback: Callback): void;", - "mainBuggyLine": "209" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "209", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "on(type: 'change', callback: Callback): void;", - "mainBuggyLine": "209" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "220", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [param] tag is missing.", - "language": "ts", - "mainBuggyCode": "off(type: 'change', callback: Callback): void;", - "mainBuggyLine": "220" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "220", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "off(type: 'change', callback: Callback): void;", - "mainBuggyLine": "220" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "226", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "type ValueType = number | string | boolean;", - "mainBuggyLine": "226" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "226", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "type ValueType = number | string | boolean;", - "mainBuggyLine": "226" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "236", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface StorageObserver", - "mainBuggyLine": "236" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "240", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "key: string;", - "mainBuggyLine": "240" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "240", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "key: string;", - "mainBuggyLine": "240" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "246", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "const MAX_KEY_LENGTH: 80;", - "mainBuggyLine": "246" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "246", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "const MAX_KEY_LENGTH: 80;", - "mainBuggyLine": "246" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "251", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "const MAX_VALUE_LENGTH: 8192;", - "mainBuggyLine": "251" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts", - "codeContextStaerLine": "251", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "const MAX_VALUE_LENGTH: 8192;", - "mainBuggyLine": "251" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "74", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "type GetDelayData = (type: string) => UnifiedData;", - "mainBuggyLine": "74" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "74", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_06", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [returns] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "type GetDelayData = (type: string) => UnifiedData;", - "mainBuggyLine": "74" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "74", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [1] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "type GetDelayData = (type: string) => UnifiedData;", - "mainBuggyLine": "74" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "74", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type GetDelayData = (type: string) => UnifiedData;", - "mainBuggyLine": "74" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "83", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type ValueType = number | string | image.PixelMap | Want | ArrayBuffer;", - "mainBuggyLine": "83" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "276", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "summary: Record;", - "mainBuggyLine": "276" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "290", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "totalSize: number;", - "mainBuggyLine": "290" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "387", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "details?: Record;", - "mainBuggyLine": "387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "419", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "textContent: string;", - "mainBuggyLine": "419" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "433", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abstract?: string;", - "mainBuggyLine": "433" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "465", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "url: string;", - "mainBuggyLine": "465" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "479", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "description?: string;", - "mainBuggyLine": "479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "511", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "htmlContent: string;", - "mainBuggyLine": "511" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "525", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "plainContent?: string;", - "mainBuggyLine": "525" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "557", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "details?: Record;", - "mainBuggyLine": "557" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "571", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uri: string;", - "mainBuggyLine": "571" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "603", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "imageUri: string;", - "mainBuggyLine": "603" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "635", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "videoUri: string;", - "mainBuggyLine": "635" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "667", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "audioUri: string;", - "mainBuggyLine": "667" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "699", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "folderUri: string;", - "mainBuggyLine": "699" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "733", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "details?: Record;", - "mainBuggyLine": "733" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "767", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "formId: number;", - "mainBuggyLine": "767" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "781", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "formName: string;", - "mainBuggyLine": "781" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "795", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName: string;", - "mainBuggyLine": "795" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "809", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityName: string;", - "mainBuggyLine": "809" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "823", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "module: string;", - "mainBuggyLine": "823" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "857", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "appId: string;", - "mainBuggyLine": "857" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "871", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "appName: string;", - "mainBuggyLine": "871" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "885", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "appIconId: string;", - "mainBuggyLine": "885" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "899", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "appLabelId: string;", - "mainBuggyLine": "899" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "913", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName: string;", - "mainBuggyLine": "913" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "927", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityName: string;", - "mainBuggyLine": "927" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "961", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rawData: Uint8Array;", - "mainBuggyLine": "961" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "997", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "applicationDefinedType: string;", - "mainBuggyLine": "997" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "1011", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rawData: Uint8Array;", - "mainBuggyLine": "1011" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "1059", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type Options = {\n /**\n * Indicates the target Intention\n *\n * @syscap SystemCapability.DistributedDataManager.UDMF.Core\n * @since 10\n */\n /**\n * Indicates the target Intention\n *\n * @syscap SystemCapability.DistributedDataManager.UDMF.Core\n * @atomicservice\n * @since 11\n */\n intention?: Intention;\n\n /**\n * Indicates the unique identifier of target UnifiedData\n *\n * @syscap SystemCapability.DistributedDataManager.UDMF.Core\n * @since 10\n */\n /**\n * Indicates the unique identifier of target UnifiedData\n *\n * @syscap SystemCapability.DistributedDataManager.UDMF.Core\n * @atomicservice\n * @since 11\n */\n key?: string;\n };", - "mainBuggyLine": "1059" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "1116", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function insertData(options: Options, data: UnifiedData, callback: AsyncCallback): void;", - "mainBuggyLine": "1116" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "1143", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function insertData(options: Options, data: UnifiedData): Promise;", - "mainBuggyLine": "1143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "1170", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function updateData(options: Options, data: UnifiedData, callback: AsyncCallback): void;", - "mainBuggyLine": "1170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "1197", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function updateData(options: Options, data: UnifiedData): Promise;", - "mainBuggyLine": "1197" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "1222", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function queryData(options: Options, callback: AsyncCallback>): void;", - "mainBuggyLine": "1222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "1247", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function queryData(options: Options): Promise>;", - "mainBuggyLine": "1247" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "1272", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function deleteData(options: Options, callback: AsyncCallback>): void;", - "mainBuggyLine": "1272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts", - "codeContextStaerLine": "1297", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function deleteData(options: Options): Promise>;", - "mainBuggyLine": "1297" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "59", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ENTITY = 'general.entity'", - "mainBuggyLine": "59" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "67", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OBJECT = 'general.object'", - "mainBuggyLine": "67" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "75", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMPOSITE_OBJECT = 'general.composite-object'", - "mainBuggyLine": "75" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "143", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "XML = 'general.xml'", - "mainBuggyLine": "143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "151", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SMIL = 'com.real.smil'", - "mainBuggyLine": "151" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "159", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SOURCE_CODE = 'general.source-code'", - "mainBuggyLine": "159" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "167", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCRIPT = 'general.script'", - "mainBuggyLine": "167" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "175", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SHELL_SCRIPT = 'general.shell-script'", - "mainBuggyLine": "175" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "183", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CSH_SCRIPT = 'general.csh-script'", - "mainBuggyLine": "183" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "191", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PERL_SCRIPT = 'general.perl-script'", - "mainBuggyLine": "191" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "199", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHP_SCRIPT = 'general.php-script'", - "mainBuggyLine": "199" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "207", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PYTHON_SCRIPT = 'general.python-script'", - "mainBuggyLine": "207" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "215", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RUBY_SCRIPT = 'general.ruby-script'", - "mainBuggyLine": "215" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "223", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_SCRIPT = 'general.type-script'", - "mainBuggyLine": "223" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "231", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "JAVA_SCRIPT = 'general.java-script'", - "mainBuggyLine": "231" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "239", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "C_HEADER = 'general.c-header'", - "mainBuggyLine": "239" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "247", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "C_SOURCE = 'general.c-source'", - "mainBuggyLine": "247" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "255", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "C_PLUS_PLUS_HEADER = 'general.c-plus-plus-header'", - "mainBuggyLine": "255" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "263", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "C_PLUS_PLUS_SOURCE = 'general.c-plus-plus-source'", - "mainBuggyLine": "263" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "271", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "JAVA_SOURCE = 'general.java-source'", - "mainBuggyLine": "271" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "279", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MARKDOWN = 'general.markdown'", - "mainBuggyLine": "279" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "287", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EBOOK = 'general.ebook'", - "mainBuggyLine": "287" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "295", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EPUB = 'general.epub'", - "mainBuggyLine": "295" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "303", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AZW = 'com.amazon.azw'", - "mainBuggyLine": "303" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "311", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AZW3 = 'com.amazon.azw3'", - "mainBuggyLine": "311" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "319", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "KFX = 'com.amazon.kfx'", - "mainBuggyLine": "319" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "327", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MOBI = 'com.amazon.mobi'", - "mainBuggyLine": "327" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "335", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MEDIA = 'general.media'", - "mainBuggyLine": "335" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "358", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "JPEG = 'general.jpeg'", - "mainBuggyLine": "358" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "366", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PNG = 'general.png'", - "mainBuggyLine": "366" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "374", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RAW_IMAGE = 'general.raw-image'", - "mainBuggyLine": "374" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "382", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TIFF = 'general.tiff'", - "mainBuggyLine": "382" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "390", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "BMP = 'com.microsoft.bmp'", - "mainBuggyLine": "390" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "398", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ICO = 'com.microsoft.ico'", - "mainBuggyLine": "398" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "406", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHOTOSHOP_IMAGE = 'com.adobe.photoshop-image'", - "mainBuggyLine": "406" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "414", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AI_IMAGE = 'com.adobe.illustrator.ai-image'", - "mainBuggyLine": "414" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "422", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FAX = 'general.fax'", - "mainBuggyLine": "422" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "430", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "JFX_FAX = 'com.j2.jfx-fax'", - "mainBuggyLine": "430" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "438", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EFX_FAX = 'com.js.efx-fax'", - "mainBuggyLine": "438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "446", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "XBITMAP_IMAGE = 'general.xbitmap-image'", - "mainBuggyLine": "446" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "454", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TGA_IMAGE = 'com.truevision.tga-image'", - "mainBuggyLine": "454" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "462", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SGI_IMAGE = 'com.sgi.sgi-image'", - "mainBuggyLine": "462" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "470", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OPENEXR_IMAGE = 'com.ilm.openexr-image'", - "mainBuggyLine": "470" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "478", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FLASHPIX_IMAGE = 'com.kodak.flashpix.image'", - "mainBuggyLine": "478" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "486", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WORD_DOC = 'com.microsoft.word.doc'", - "mainBuggyLine": "486" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "494", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EXCEL = 'com.microsoft.excel.xls'", - "mainBuggyLine": "494" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "502", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PPT = 'com.microsoft.powerpoint.ppt'", - "mainBuggyLine": "502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "510", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PDF = 'com.adobe.pdf'", - "mainBuggyLine": "510" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "518", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "POSTSCRIPT = 'com.adobe.postscript'", - "mainBuggyLine": "518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "526", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ENCAPSULATED_POSTSCRIPT = 'com.adobe.encapsulated-postscript'", - "mainBuggyLine": "526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "549", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AVI = 'general.avi'", - "mainBuggyLine": "549" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "557", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MPEG = 'general.mpeg'", - "mainBuggyLine": "557" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "565", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MPEG4 = 'general.mpeg-4'", - "mainBuggyLine": "565" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "573", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VIDEO_3GPP = 'general.3gpp'", - "mainBuggyLine": "573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "581", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VIDEO_3GPP2 = 'general.3gpp2'", - "mainBuggyLine": "581" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "589", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WINDOWS_MEDIA_WM = 'com.microsoft.windows-media-wm'", - "mainBuggyLine": "589" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "597", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WINDOWS_MEDIA_WMV = 'com.microsoft.windows-media-wmv'", - "mainBuggyLine": "597" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "605", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WINDOWS_MEDIA_WMP = 'com.microsoft.windows-media-wmp'", - "mainBuggyLine": "605" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "613", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WINDOWS_MEDIA_WVX = 'com.microsoft.windows-media-wvx'", - "mainBuggyLine": "613" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "621", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WINDOWS_MEDIA_WMX = 'com.microsoft.windows-media-wmx'", - "mainBuggyLine": "621" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "629", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "REALMEDIA = 'com.real.realmedia'", - "mainBuggyLine": "629" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "652", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AAC = 'general.aac'", - "mainBuggyLine": "652" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "660", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AIFF = 'general.aiff'", - "mainBuggyLine": "660" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "668", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ALAC = 'general.alac'", - "mainBuggyLine": "668" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "676", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FLAC = 'general.flac'", - "mainBuggyLine": "676" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "684", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MP3 = 'general.mp3'", - "mainBuggyLine": "684" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "692", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OGG = 'general.ogg'", - "mainBuggyLine": "692" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "700", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PCM = 'general.pcm'", - "mainBuggyLine": "700" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "708", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WINDOWS_MEDIA_WMA = 'com.microsoft.windows-media-wma'", - "mainBuggyLine": "708" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "716", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WAVEFORM_AUDIO = 'com.microsoft.waveform-audio'", - "mainBuggyLine": "716" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "724", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WINDOWS_MEDIA_WAX = 'com.microsoft.windows-media-wax'", - "mainBuggyLine": "724" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "732", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AU_AUDIO = 'general.au-audio'", - "mainBuggyLine": "732" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "740", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AIFC_AUDIO = 'general.aifc-audio'", - "mainBuggyLine": "740" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "748", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SD2_AUDIO = 'com.digidesign.sd2-audio'", - "mainBuggyLine": "748" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "756", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "REALAUDIO = 'com.real.realaudio'", - "mainBuggyLine": "756" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "779", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DIRECTORY = 'general.directory'", - "mainBuggyLine": "779" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "802", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SYMLINK = 'general.symlink'", - "mainBuggyLine": "802" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "810", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ARCHIVE = 'general.archive'", - "mainBuggyLine": "810" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "818", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "BZ2_ARCHIVE = 'general.bz2-archive'", - "mainBuggyLine": "818" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "826", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DISK_IMAGE = 'general.disk-image'", - "mainBuggyLine": "826" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "834", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TAR_ARCHIVE = 'general.tar-archive'", - "mainBuggyLine": "834" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "842", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ZIP_ARCHIVE = 'general.zip-archive'", - "mainBuggyLine": "842" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "850", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "JAVA_ARCHIVE = 'com.sun.java-archive'", - "mainBuggyLine": "850" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "858", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GNU_TAR_ARCHIVE = 'org.gnu.gnu-tar-archive'", - "mainBuggyLine": "858" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "866", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GNU_ZIP_ARCHIVE = 'org.gnu.gnu-zip-archive'", - "mainBuggyLine": "866" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "874", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GNU_ZIP_TAR_ARCHIVE = 'org.gnu.gnu-zip-tar-archive'", - "mainBuggyLine": "874" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "882", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OPENXML = 'org.openxmlformats.openxml'", - "mainBuggyLine": "882" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "890", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WORDPROCESSINGML_DOCUMENT = 'org.openxmlformats.wordprocessingml.document'", - "mainBuggyLine": "890" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "898", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SPREADSHEETML_SHEET = 'org.openxmlformats.spreadsheetml.sheet'", - "mainBuggyLine": "898" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "906", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PRESENTATIONML_PRESENTATION = 'org.openxmlformats.presentationml.presentation'", - "mainBuggyLine": "906" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "914", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OPENDOCUMENT = 'org.oasis.opendocument'", - "mainBuggyLine": "914" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "922", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OPENDOCUMENT_TEXT = 'org.oasis.opendocument.text'", - "mainBuggyLine": "922" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "930", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OPENDOCUMENT_SPREADSHEET = 'org.oasis.opendocument.spreadsheet'", - "mainBuggyLine": "930" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "938", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OPENDOCUMENT_PRESENTATION = 'org.oasis.opendocument.presentation'", - "mainBuggyLine": "938" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "946", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OPENDOCUMENT_GRAPHICS = 'org.oasis.opendocument.graphics'", - "mainBuggyLine": "946" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "954", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OPENDOCUMENT_FORMULA = 'org.oasis.opendocument.formula'", - "mainBuggyLine": "954" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "962", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STUFFIT_ARCHIVE = 'com.allume.stuffit-archive'", - "mainBuggyLine": "962" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "970", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALENDAR = 'general.calendar'", - "mainBuggyLine": "970" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "978", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VCS = 'general.vcs'", - "mainBuggyLine": "978" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "986", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ICS = 'general.ics'", - "mainBuggyLine": "986" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "994", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CONTACT = 'general.contact'", - "mainBuggyLine": "994" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1002", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DATABASE = 'general.database'", - "mainBuggyLine": "1002" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1010", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MESSAGE = 'general.message'", - "mainBuggyLine": "1010" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1018", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EXECUTABLE = 'general.executable'", - "mainBuggyLine": "1018" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1026", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PORTABLE_EXECUTABLE = 'com.microsoft.portable-executable'", - "mainBuggyLine": "1026" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1034", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SUN_JAVA_CLASS = 'com.sun.java-class'", - "mainBuggyLine": "1034" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1042", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VCARD = 'general.vcard'", - "mainBuggyLine": "1042" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1050", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NAVIGATION = 'general.navigation'", - "mainBuggyLine": "1050" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1058", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LOCATION = 'general.location'", - "mainBuggyLine": "1058" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1066", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FONT = 'general.font'", - "mainBuggyLine": "1066" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1074", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TRUETYPE_FONT = 'general.truetype-font'", - "mainBuggyLine": "1074" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1082", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TRUETYPE_COLLECTION_FONT = 'general.truetype-collection-font'", - "mainBuggyLine": "1082" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1090", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OPENTYPE_FONT = 'general.opentype-font'", - "mainBuggyLine": "1090" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1098", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "POSTSCRIPT_FONT = 'com.adobe.postscript-font'", - "mainBuggyLine": "1098" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1106", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "POSTSCRIPT_PFB_FONT = 'com.adobe.postscript-pfb-font'", - "mainBuggyLine": "1106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1114", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "POSTSCRIPT_PFA_FONT = 'com.adobe.postscript-pfa-font'", - "mainBuggyLine": "1114" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1167", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OPENHARMONY_ATOMIC_SERVICE = 'openharmony.atomic-service'", - "mainBuggyLine": "1167" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1176", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OPENHARMONY_PACKAGE = 'openharmony.package'", - "mainBuggyLine": "1176" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1184", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OPENHARMONY_HAP = 'openharmony.hap'", - "mainBuggyLine": "1184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1192", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OPENHARMONY_HDOC = 'openharmony.hdoc'", - "mainBuggyLine": "1192" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1200", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OPENHARMONY_HINOTE = 'openharmony.hinote'", - "mainBuggyLine": "1200" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1208", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OPENHARMONY_STYLED_STRING = 'openharmony.styled-string'", - "mainBuggyLine": "1208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1216", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OPENHARMONY_WANT = 'openharmony.want'", - "mainBuggyLine": "1216" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1226", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class TypeDescriptor", - "mainBuggyLine": "1226" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1235", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly typeId: string;", - "mainBuggyLine": "1235" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1245", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly belongingToTypes: Array;", - "mainBuggyLine": "1245" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1255", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly description: string;", - "mainBuggyLine": "1255" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1265", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly referenceURL: string;", - "mainBuggyLine": "1265" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1275", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly iconFile: string;", - "mainBuggyLine": "1275" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1285", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly filenameExtensions: Array;", - "mainBuggyLine": "1285" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1295", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly mimeTypes: Array;", - "mainBuggyLine": "1295" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1307", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "belongsTo(type: string): boolean;", - "mainBuggyLine": "1307" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1319", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isLowerLevelType(type: string): boolean;", - "mainBuggyLine": "1319" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1331", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isHigherLevelType(type: string): boolean;", - "mainBuggyLine": "1331" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1343", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "equals(typeDescriptor: TypeDescriptor): boolean;", - "mainBuggyLine": "1343" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1357", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getTypeDescriptor(typeId: string): TypeDescriptor;", - "mainBuggyLine": "1357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1371", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getUniformDataTypeByFilenameExtension(filenameExtension: string, belongsTo?: string): string;", - "mainBuggyLine": "1371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts", - "codeContextStaerLine": "1385", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getUniformDataTypeByMIMEType(mimeType: string, belongsTo?: string): string;", - "mainBuggyLine": "1385" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.ValuesBucket.d.ts", - "codeContextStaerLine": "28", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ValueType = number | string | boolean;", - "mainBuggyLine": "28" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.ValuesBucket.d.ts", - "codeContextStaerLine": "37", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type ValuesBucket = Record;", - "mainBuggyLine": "37" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "85", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const manufacture: string;", - "mainBuggyLine": "85" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "128", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const marketName: string;", - "mainBuggyLine": "128" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "145", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const productSeries: string;", - "mainBuggyLine": "145" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "188", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const softwareModel: string;", - "mainBuggyLine": "188" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "205", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const hardwareModel: string;", - "mainBuggyLine": "205" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "215", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const hardwareProfile: string;", - "mainBuggyLine": "215" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "226", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const serial: string;", - "mainBuggyLine": "226" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "243", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const bootloaderVersion: string;", - "mainBuggyLine": "243" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "260", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const abiList: string;", - "mainBuggyLine": "260" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "277", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const securityPatchTag: string;", - "mainBuggyLine": "277" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "294", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const displayVersion: string;", - "mainBuggyLine": "294" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "311", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const incrementalVersion: string;", - "mainBuggyLine": "311" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "332", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const osReleaseType: string;", - "mainBuggyLine": "332" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "377", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const majorVersion: number;", - "mainBuggyLine": "377" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "398", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const seniorVersion: number;", - "mainBuggyLine": "398" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "417", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const featureVersion: number;", - "mainBuggyLine": "417" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "436", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const buildVersion: number;", - "mainBuggyLine": "436" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "453", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const sdkApiVersion: number;", - "mainBuggyLine": "453" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "470", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const firstApiVersion: number;", - "mainBuggyLine": "470" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "487", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const versionId: string;", - "mainBuggyLine": "487" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "504", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const buildType: string;", - "mainBuggyLine": "504" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "521", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const buildUser: string;", - "mainBuggyLine": "521" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "538", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const buildHost: string;", - "mainBuggyLine": "538" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "555", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const buildTime: string;", - "mainBuggyLine": "555" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "572", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const buildRootHash: string;", - "mainBuggyLine": "572" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "582", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const udid: string;", - "mainBuggyLine": "582" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "594", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const distributionOSName: string;", - "mainBuggyLine": "594" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "606", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const distributionOSVersion: string;", - "mainBuggyLine": "606" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "618", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const distributionOSApiVersion: number;", - "mainBuggyLine": "618" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "630", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const distributionOSReleaseType: string;", - "mainBuggyLine": "630" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "651", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const ODID: string;", - "mainBuggyLine": "651" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.deviceInfo.d.ts", - "codeContextStaerLine": "651", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [ODID] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const ODID: string;", - "mainBuggyLine": "651" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "59", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getDefaultDisplay(callback: AsyncCallback): void;", - "mainBuggyLine": "59" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "70", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getDefaultDisplay(): Promise;", - "mainBuggyLine": "70" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "110", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAllDisplay(callback: AsyncCallback>): void;", - "mainBuggyLine": "110" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "121", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAllDisplay(): Promise>;", - "mainBuggyLine": "121" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "131", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAllDisplays(callback: AsyncCallback>): void;", - "mainBuggyLine": "131" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "141", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAllDisplays(): Promise>;", - "mainBuggyLine": "141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "155", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function hasPrivateWindow(displayId: number): boolean;", - "mainBuggyLine": "155" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "214", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'privateModeChange', callback: Callback): void;", - "mainBuggyLine": "214" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "227", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'privateModeChange', callback?: Callback): void;", - "mainBuggyLine": "227" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "237", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isFoldable(): boolean;", - "mainBuggyLine": "237" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "247", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getFoldStatus(): FoldStatus;", - "mainBuggyLine": "247" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "364", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isCaptured(): boolean;", - "mainBuggyLine": "364" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "374", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getFoldDisplayMode(): FoldDisplayMode;", - "mainBuggyLine": "374" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "388", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setFoldDisplayMode(mode: FoldDisplayMode): void;", - "mainBuggyLine": "388" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "448", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getCurrentFoldCreaseRegion(): FoldCreaseRegion;", - "mainBuggyLine": "448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "462", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setFoldStatusLocked(locked: boolean): void;", - "mainBuggyLine": "462" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "633", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum DisplayState", - "mainBuggyLine": "633" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "640", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STATE_UNKNOWN = 0", - "mainBuggyLine": "640" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "647", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STATE_OFF", - "mainBuggyLine": "647" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "654", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STATE_ON", - "mainBuggyLine": "654" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "661", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STATE_DOZE", - "mainBuggyLine": "661" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "668", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STATE_DOZE_SUSPEND", - "mainBuggyLine": "668" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "675", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STATE_VR", - "mainBuggyLine": "675" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "682", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STATE_ON_SUSPEND", - "mainBuggyLine": "682" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "693", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum Orientation", - "mainBuggyLine": "693" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "701", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PORTRAIT = 0", - "mainBuggyLine": "701" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "710", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LANDSCAPE = 1", - "mainBuggyLine": "710" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "719", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PORTRAIT_INVERTED = 2", - "mainBuggyLine": "719" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "728", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LANDSCAPE_INVERTED = 3", - "mainBuggyLine": "728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "738", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface FoldCreaseRegion", - "mainBuggyLine": "738" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "746", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly displayId: number;", - "mainBuggyLine": "746" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "746", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly displayId: number;", - "mainBuggyLine": "746" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "755", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly creaseRects: Array;", - "mainBuggyLine": "755" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "755", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly creaseRects: Array;", - "mainBuggyLine": "755" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "765", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Rect", - "mainBuggyLine": "765" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "772", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "left: number;", - "mainBuggyLine": "772" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "772", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "left: number;", - "mainBuggyLine": "772" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "780", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "top: number;", - "mainBuggyLine": "780" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "780", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "top: number;", - "mainBuggyLine": "780" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "788", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "width: number;", - "mainBuggyLine": "788" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "788", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "width: number;", - "mainBuggyLine": "788" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "796", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "height: number;", - "mainBuggyLine": "796" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "796", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "height: number;", - "mainBuggyLine": "796" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "806", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface WaterfallDisplayAreaRects", - "mainBuggyLine": "806" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "813", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly left: Rect;", - "mainBuggyLine": "813" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "813", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly left: Rect;", - "mainBuggyLine": "813" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "821", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly right: Rect;", - "mainBuggyLine": "821" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "821", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly right: Rect;", - "mainBuggyLine": "821" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "829", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly top: Rect;", - "mainBuggyLine": "829" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "829", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly top: Rect;", - "mainBuggyLine": "829" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "837", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly bottom: Rect;", - "mainBuggyLine": "837" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "837", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly bottom: Rect;", - "mainBuggyLine": "837" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "847", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface CutoutInfo", - "mainBuggyLine": "847" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "854", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly boundingRects: Array;", - "mainBuggyLine": "854" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "854", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly boundingRects: Array;", - "mainBuggyLine": "854" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "862", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly waterfallDisplayAreaRects: WaterfallDisplayAreaRects;", - "mainBuggyLine": "862" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "862", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly waterfallDisplayAreaRects: WaterfallDisplayAreaRects;", - "mainBuggyLine": "862" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "903", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "id: number;", - "mainBuggyLine": "903" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "903", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "id: number;", - "mainBuggyLine": "903" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "911", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "911" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "911", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "911" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "919", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "alive: boolean;", - "mainBuggyLine": "919" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "919", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "alive: boolean;", - "mainBuggyLine": "919" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "927", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "state: DisplayState;", - "mainBuggyLine": "927" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "927", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "state: DisplayState;", - "mainBuggyLine": "927" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "935", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "refreshRate: number;", - "mainBuggyLine": "935" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "935", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "refreshRate: number;", - "mainBuggyLine": "935" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "950", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rotation: number;", - "mainBuggyLine": "950" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "973", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "width: number;", - "mainBuggyLine": "973" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "996", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "height: number;", - "mainBuggyLine": "996" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "1011", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "densityDPI: number;", - "mainBuggyLine": "1011" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "1011", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "densityDPI: number;", - "mainBuggyLine": "1011" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "1020", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "orientation: Orientation;", - "mainBuggyLine": "1020" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "1020", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "orientation: Orientation;", - "mainBuggyLine": "1020" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "1036", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "densityPixels: number;", - "mainBuggyLine": "1036" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "1051", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "scaledDensity: number;", - "mainBuggyLine": "1051" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "1051", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "scaledDensity: number;", - "mainBuggyLine": "1051" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "1059", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "xDPI: number;", - "mainBuggyLine": "1059" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "1059", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "xDPI: number;", - "mainBuggyLine": "1059" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "1067", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "yDPI: number;", - "mainBuggyLine": "1067" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "1067", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "yDPI: number;", - "mainBuggyLine": "1067" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "1076", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "colorSpaces: Array;", - "mainBuggyLine": "1076" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "1085", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hdrFormats: Array;", - "mainBuggyLine": "1085" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "1095", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getCutoutInfo(callback: AsyncCallback): void;", - "mainBuggyLine": "1095" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "1105", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getCutoutInfo(): Promise;", - "mainBuggyLine": "1105" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "1118", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hasImmersiveWindow(callback: AsyncCallback): void;", - "mainBuggyLine": "1118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "1131", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hasImmersiveWindow(): Promise;", - "mainBuggyLine": "1131" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "1144", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAvailableArea(): Promise;", - "mainBuggyLine": "1144" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "1160", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'availableAreaChange', callback: Callback): void;", - "mainBuggyLine": "1160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts", - "codeContextStaerLine": "1176", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'availableAreaChange', callback?: Callback): void;", - "mainBuggyLine": "1176" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.display.d.ts", - "codeContextStaerLine": "178", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_add] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'add' | 'remove' | 'change', callback: Callback): void;", - "mainBuggyLine": "178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.display.d.ts", - "codeContextStaerLine": "178", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_remove] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'add' | 'remove' | 'change', callback: Callback): void;", - "mainBuggyLine": "178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.display.d.ts", - "codeContextStaerLine": "178", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_change] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'add' | 'remove' | 'change', callback: Callback): void;", - "mainBuggyLine": "178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.display.d.ts", - "codeContextStaerLine": "201", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_add] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'add' | 'remove' | 'change', callback?: Callback): void;", - "mainBuggyLine": "201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.display.d.ts", - "codeContextStaerLine": "201", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_remove] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'add' | 'remove' | 'change', callback?: Callback): void;", - "mainBuggyLine": "201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.display.d.ts", - "codeContextStaerLine": "201", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_change] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'add' | 'remove' | 'change', callback?: Callback): void;", - "mainBuggyLine": "201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.display.d.ts", - "codeContextStaerLine": "272", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_foldStatusChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'foldStatusChange', callback: Callback): void;", - "mainBuggyLine": "272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.display.d.ts", - "codeContextStaerLine": "297", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_foldStatusChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'foldStatusChange', callback?: Callback): void;", - "mainBuggyLine": "297" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.display.d.ts", - "codeContextStaerLine": "311", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_foldAngleChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'foldAngleChange', callback: Callback>): void;", - "mainBuggyLine": "311" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.display.d.ts", - "codeContextStaerLine": "325", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_foldAngleChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'foldAngleChange', callback?: Callback>): void;", - "mainBuggyLine": "325" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.display.d.ts", - "codeContextStaerLine": "339", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_captureStatusChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'captureStatusChange', callback: Callback): void;", - "mainBuggyLine": "339" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.display.d.ts", - "codeContextStaerLine": "353", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_captureStatusChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'captureStatusChange', callback?: Callback): void;", - "mainBuggyLine": "353" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.display.d.ts", - "codeContextStaerLine": "413", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_foldDisplayModeChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'foldDisplayModeChange', callback: Callback): void;", - "mainBuggyLine": "413" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.display.d.ts", - "codeContextStaerLine": "438", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_foldDisplayModeChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'foldDisplayModeChange', callback?: Callback): void;", - "mainBuggyLine": "438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.display.d.ts", - "codeContextStaerLine": "178", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_01", - "description": "API check error of [wrong parameter]: The event name should be string.", - "language": "ts", - "mainBuggyCode": "function on(type: 'add' | 'remove' | 'change', callback: Callback): void;", - "mainBuggyLine": "178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.display.d.ts", - "codeContextStaerLine": "201", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_01", - "description": "API check error of [wrong parameter]: The event name should be string.", - "language": "ts", - "mainBuggyCode": "function off(type: 'add' | 'remove' | 'change', callback?: Callback): void;", - "mainBuggyLine": "201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.display.d.ts", - "codeContextStaerLine": "178", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_01", - "description": "API check error of [wrong parameter]: The event name should be string.", - "language": "ts", - "mainBuggyCode": "function on(type: 'add' | 'remove' | 'change', callback: Callback): void;", - "mainBuggyLine": "178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.display.d.ts", - "codeContextStaerLine": "201", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_01", - "description": "API check error of [wrong parameter]: The event name should be string.", - "language": "ts", - "mainBuggyCode": "function off(type: 'add' | 'remove' | 'change', callback?: Callback): void;", - "mainBuggyLine": "201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.display.d.ts", - "codeContextStaerLine": "178", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_01", - "description": "API check error of [wrong parameter]: The event name should be string.", - "language": "ts", - "mainBuggyCode": "function on(type: 'add' | 'remove' | 'change', callback: Callback): void;", - "mainBuggyLine": "178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.display.d.ts", - "codeContextStaerLine": "201", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_01", - "description": "API check error of [wrong parameter]: The event name should be string.", - "language": "ts", - "mainBuggyCode": "function off(type: 'add' | 'remove' | 'change', callback?: Callback): void;", - "mainBuggyLine": "201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedDeviceManager.d.ts", - "codeContextStaerLine": "45", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "45" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedDeviceManager.d.ts", - "codeContextStaerLine": "52", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceName: string;", - "mainBuggyLine": "52" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedDeviceManager.d.ts", - "codeContextStaerLine": "68", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "networkId?: string;", - "mainBuggyLine": "68" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "53", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "53" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "64", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceName: string;", - "mainBuggyLine": "64" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "75", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceType: DeviceType;", - "mainBuggyLine": "75" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "networkId: string;", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "96", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "range: number;", - "mainBuggyLine": "96" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "106", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "authForm: AuthForm;", - "mainBuggyLine": "106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "315", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "subscribeId: number;", - "mainBuggyLine": "315" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "325", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "mode: DiscoverMode;", - "mainBuggyLine": "325" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "335", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "medium: ExchangeMedium;", - "mainBuggyLine": "335" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "345", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "freq: ExchangeFreq;", - "mainBuggyLine": "345" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "355", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isSameAccount: boolean;", - "mainBuggyLine": "355" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "365", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isWakeRemote: boolean;", - "mainBuggyLine": "365" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "375", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "capability: SubscribeCap;", - "mainBuggyLine": "375" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "396", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "publishId: number;", - "mainBuggyLine": "396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "406", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "mode: DiscoverMode;", - "mainBuggyLine": "406" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "416", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "freq: ExchangeFreq;", - "mainBuggyLine": "416" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "426", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ranging: boolean;", - "mainBuggyLine": "426" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "615", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "authType: number;", - "mainBuggyLine": "615" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "625", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "extraInfo: { [key: string]: any };", - "mainBuggyLine": "625" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "646", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "authType: number;", - "mainBuggyLine": "646" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "656", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "token: number;", - "mainBuggyLine": "656" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts", - "codeContextStaerLine": "666", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "extraInfo: { [key: string]: any };", - "mainBuggyLine": "666" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedMissionManager.d.ts", - "codeContextStaerLine": "430", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "export type MissionCallback = _MissionCallback;", - "mainBuggyLine": "430" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedMissionManager.d.ts", - "codeContextStaerLine": "440", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "export type MissionDeviceInfo = _MissionDeviceInfo;", - "mainBuggyLine": "440" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedMissionManager.d.ts", - "codeContextStaerLine": "450", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "export type MissionParameter = _MissionParameter;", - "mainBuggyLine": "450" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "205", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "busType: BusType;", - "mainBuggyLine": "205" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "213", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: number;", - "mainBuggyLine": "213" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "221", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "description: string;", - "mainBuggyLine": "221" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "231", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface USBDevice", - "mainBuggyLine": "231" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "238", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "vendorId: number;", - "mainBuggyLine": "238" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "246", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "productId: number;", - "mainBuggyLine": "246" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "263", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: number;", - "mainBuggyLine": "263" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "271", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "remote: rpc.IRemoteObject;", - "mainBuggyLine": "271" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "290", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bInterfaceNumber: number;", - "mainBuggyLine": "290" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "299", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bClass: number;", - "mainBuggyLine": "299" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "308", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bSubClass: number;", - "mainBuggyLine": "308" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "317", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bProtocol: number;", - "mainBuggyLine": "317" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "337", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: number;", - "mainBuggyLine": "337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "346", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isDriverMatched: boolean;", - "mainBuggyLine": "346" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "355", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "driverUid?: string;", - "mainBuggyLine": "355" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "366", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface USBDeviceInfo", - "mainBuggyLine": "366" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "374", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "vendorId: number;", - "mainBuggyLine": "374" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "383", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "productId: number;", - "mainBuggyLine": "383" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "392", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "interfaceDescList: Array>;", - "mainBuggyLine": "392" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "411", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "busType: BusType;", - "mainBuggyLine": "411" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "420", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "driverUid: string;", - "mainBuggyLine": "420" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "429", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "driverName: string;", - "mainBuggyLine": "429" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "438", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "driverVersion: string;", - "mainBuggyLine": "438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "447", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "driverSize: string;", - "mainBuggyLine": "447" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "456", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "description: string;", - "mainBuggyLine": "456" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "467", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface USBDriverInfo", - "mainBuggyLine": "467" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "475", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "productIdList: Array;", - "mainBuggyLine": "475" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts", - "codeContextStaerLine": "484", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "vendorIdList: Array;", - "mainBuggyLine": "484" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.effectKit.d.ts", - "codeContextStaerLine": "36", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare namespace effectKit", - "mainBuggyLine": "36" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.effectKit.d.ts", - "codeContextStaerLine": "112", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "invert(): Filter;", - "mainBuggyLine": "112" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.effectKit.d.ts", - "codeContextStaerLine": "123", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setColorMatrix(colorMatrix: Array): Filter;", - "mainBuggyLine": "123" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.effectKit.d.ts", - "codeContextStaerLine": "133", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPixelMap(): image.PixelMap;", - "mainBuggyLine": "133" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.bundleManager.d.ts", - "codeContextStaerLine": "48", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "userId?: number;", - "mainBuggyLine": "48" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.bundleManager.d.ts", - "codeContextStaerLine": "57", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "installFlag?: number;", - "mainBuggyLine": "57" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.deviceControl.d.ts", - "codeContextStaerLine": "153", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function operateDevice(admin: Want, operate: string, addition?: string): void;", - "mainBuggyLine": "153" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.securityManager.d.ts", - "codeContextStaerLine": "50", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isEncrypted: boolean;", - "mainBuggyLine": "50" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.events.emitter.d.ts", - "codeContextStaerLine": "75", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_InnerEvent] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(event: InnerEvent, callback: Callback): void;", - "mainBuggyLine": "75" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.events.emitter.d.ts", - "codeContextStaerLine": "96", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_string] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(eventId: string, callback: Callback): void;", - "mainBuggyLine": "96" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.events.emitter.d.ts", - "codeContextStaerLine": "128", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [once_InnerEvent] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function once(event: InnerEvent, callback: Callback): void;", - "mainBuggyLine": "128" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.events.emitter.d.ts", - "codeContextStaerLine": "151", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [once_string] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function once(eventId: string, callback: Callback): void;", - "mainBuggyLine": "151" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.events.emitter.d.ts", - "codeContextStaerLine": "177", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_number] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(eventId: number): void;", - "mainBuggyLine": "177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.events.emitter.d.ts", - "codeContextStaerLine": "196", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_string] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(eventId: string): void;", - "mainBuggyLine": "196" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.events.emitter.d.ts", - "codeContextStaerLine": "225", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_number] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(eventId: number, callback: Callback): void;", - "mainBuggyLine": "225" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.events.emitter.d.ts", - "codeContextStaerLine": "246", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_string] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(eventId: string, callback: Callback): void;", - "mainBuggyLine": "246" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.events.emitter.d.ts", - "codeContextStaerLine": "275", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [emit_InnerEvent] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function emit(event: InnerEvent, data?: EventData): void;", - "mainBuggyLine": "275" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.events.emitter.d.ts", - "codeContextStaerLine": "296", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [emit_string] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function emit(eventId: string, data?: EventData): void;", - "mainBuggyLine": "296" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.events.emitter.d.ts", - "codeContextStaerLine": "319", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [emit_string] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function emit(eventId: string, options: Options, data?: EventData): void;", - "mainBuggyLine": "319" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.events.emitter.d.ts", - "codeContextStaerLine": "75", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_05", - "description": "API check error of [limited api pair errors]: The on and off event subscription methods do not appear in pair.", - "language": "ts", - "mainBuggyCode": "function on(event: InnerEvent, callback: Callback): void;", - "mainBuggyLine": "75" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.events.emitter.d.ts", - "codeContextStaerLine": "75", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_01", - "description": "API check error of [wrong parameter]: The event name should be string.", - "language": "ts", - "mainBuggyCode": "function on(event: InnerEvent, callback: Callback): void;", - "mainBuggyLine": "75" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.events.emitter.d.ts", - "codeContextStaerLine": "275", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_01", - "description": "API check error of [wrong parameter]: The event name should be string.", - "language": "ts", - "mainBuggyCode": "function emit(event: InnerEvent, data?: EventData): void;", - "mainBuggyLine": "275" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.events.emitter.d.ts", - "codeContextStaerLine": "128", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_01", - "description": "API check error of [wrong parameter]: The event name should be string.", - "language": "ts", - "mainBuggyCode": "function once(event: InnerEvent, callback: Callback): void;", - "mainBuggyLine": "128" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.events.emitter.d.ts", - "codeContextStaerLine": "177", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_05", - "description": "API check error of [limited api pair errors]: The on and off event subscription methods do not appear in pair.", - "language": "ts", - "mainBuggyCode": "function off(eventId: number): void;", - "mainBuggyLine": "177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.events.emitter.d.ts", - "codeContextStaerLine": "177", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_01", - "description": "API check error of [wrong parameter]: The event name should be string.", - "language": "ts", - "mainBuggyCode": "function off(eventId: number): void;", - "mainBuggyLine": "177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.events.emitter.d.ts", - "codeContextStaerLine": "225", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_01", - "description": "API check error of [wrong parameter]: The event name should be string.", - "language": "ts", - "mainBuggyCode": "function off(eventId: number, callback: Callback): void;", - "mainBuggyLine": "225" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.backup.d.ts", - "codeContextStaerLine": "180", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface IncrementalBackupData", - "mainBuggyLine": "180" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.backup.d.ts", - "codeContextStaerLine": "200", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface File", - "mainBuggyLine": "200" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.backup.d.ts", - "codeContextStaerLine": "316", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onFileReady: AsyncCallback;", - "mainBuggyLine": "316" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.backup.d.ts", - "codeContextStaerLine": "351", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onBundleBegin: AsyncCallback;", - "mainBuggyLine": "351" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.backup.d.ts", - "codeContextStaerLine": "386", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onBundleEnd: AsyncCallback;", - "mainBuggyLine": "386" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.backup.d.ts", - "codeContextStaerLine": "401", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onAllBundlesEnd: AsyncCallback;", - "mainBuggyLine": "401" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.backup.d.ts", - "codeContextStaerLine": "410", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onBackupServiceDied: Callback;", - "mainBuggyLine": "410" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.backup.d.ts", - "codeContextStaerLine": "428", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onResultReport: AsyncCallback;", - "mainBuggyLine": "428" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.cloudSyncManager.d.ts", - "codeContextStaerLine": "46", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function changeAppCloudSwitch(accountId: string, bundleName: string, status: boolean): Promise;", - "mainBuggyLine": "46" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.cloudSyncManager.d.ts", - "codeContextStaerLine": "63", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function changeAppCloudSwitch(\n accountId: string,\n bundleName: string,\n status: boolean,\n callback: AsyncCallback\n ): void;", - "mainBuggyLine": "63" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.cloudSyncManager.d.ts", - "codeContextStaerLine": "84", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function notifyDataChange(accountId: string, bundleName: string): Promise;", - "mainBuggyLine": "84" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.cloudSyncManager.d.ts", - "codeContextStaerLine": "100", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function notifyDataChange(accountId: string, bundleName: string, callback: AsyncCallback): void;", - "mainBuggyLine": "100" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.cloudSyncManager.d.ts", - "codeContextStaerLine": "177", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " enum Action", - "mainBuggyLine": "177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.cloudSyncManager.d.ts", - "codeContextStaerLine": "186", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "RETAIN_DATA", - "mainBuggyLine": "186" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.cloudSyncManager.d.ts", - "codeContextStaerLine": "196", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "CLEAR_DATA", - "mainBuggyLine": "196" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fileAccess.d.ts", - "codeContextStaerLine": "215", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " interface FileInfo", - "mainBuggyLine": "215" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fileAccess.d.ts", - "codeContextStaerLine": "406", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " interface FileIterator", - "mainBuggyLine": "406" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fileAccess.d.ts", - "codeContextStaerLine": "464", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " interface RootInfo", - "mainBuggyLine": "464" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fileAccess.d.ts", - "codeContextStaerLine": "623", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " interface RootIterator", - "mainBuggyLine": "623" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fileAccess.d.ts", - "codeContextStaerLine": "680", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " interface CopyResult", - "mainBuggyLine": "680" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fileAccess.d.ts", - "codeContextStaerLine": "704", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "destUri: string;", - "mainBuggyLine": "704" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fileAccess.d.ts", - "codeContextStaerLine": "716", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "errCode: number;", - "mainBuggyLine": "716" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fileAccess.d.ts", - "codeContextStaerLine": "924", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " interface NotifyMessage", - "mainBuggyLine": "924" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fileAccess.d.ts", - "codeContextStaerLine": "962", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " interface MoveResult", - "mainBuggyLine": "962" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fileAccess.d.ts", - "codeContextStaerLine": "1036", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " interface FileAccessHelper", - "mainBuggyLine": "1036" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "318", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const NONBLOCK = 0o4000;", - "mainBuggyLine": "318" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "334", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const DIR = 0o200000;", - "mainBuggyLine": "334" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "350", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const NOFOLLOW = 0o400000;", - "mainBuggyLine": "350" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "366", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const SYNC = 0o4010000;", - "mainBuggyLine": "366" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "5897", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare function connectDfs(networkId: string, listeners: DfsListeners): Promise;", - "mainBuggyLine": "5897" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "5910", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "declare function disconnectDfs(networkId: string): Promise;", - "mainBuggyLine": "5910" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "6000", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type ProgressListener = (progress: Progress) => void;", - "mainBuggyLine": "6000" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "6061", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly path: string;", - "mainBuggyLine": "6061" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "6073", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly name: string;", - "mainBuggyLine": "6073" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "6085", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getParent(): string;", - "mainBuggyLine": "6085" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "6101", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "lock(exclusive?: boolean): Promise;", - "mainBuggyLine": "6101" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "6116", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "lock(callback: AsyncCallback): void;", - "mainBuggyLine": "6116" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "6132", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "lock(exclusive: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "6132" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "6147", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "tryLock(exclusive?: boolean): void;", - "mainBuggyLine": "6147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "6161", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "unlock(): void;", - "mainBuggyLine": "6161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "6737", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly ino: bigint;", - "mainBuggyLine": "6737" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "6787", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly uid: number;", - "mainBuggyLine": "6787" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "6805", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly gid: number;", - "mainBuggyLine": "6805" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "6907", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly ctime: number;", - "mainBuggyLine": "6907" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "6916", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly location: LocationType;", - "mainBuggyLine": "6916" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "6937", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isBlockDevice(): boolean;", - "mainBuggyLine": "6937" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "6957", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isCharacterDevice(): boolean;", - "mainBuggyLine": "6957" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "7008", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isFIFO(): boolean;", - "mainBuggyLine": "7008" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "7059", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isSocket(): boolean;", - "mainBuggyLine": "7059" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "7079", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isSymbolicLink(): boolean;", - "mainBuggyLine": "7079" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "7883", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface ReadTextOptions", - "mainBuggyLine": "7883" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts", - "codeContextStaerLine": "7903", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface WriteOptions", - "mainBuggyLine": "7903" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.hash.d.ts", - "codeContextStaerLine": "97", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class HashStream", - "mainBuggyLine": "97" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.hash.d.ts", - "codeContextStaerLine": "107", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "digest(): string;", - "mainBuggyLine": "107" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.hash.d.ts", - "codeContextStaerLine": "118", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "update(data: ArrayBuffer): void;", - "mainBuggyLine": "118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.hash.d.ts", - "codeContextStaerLine": "132", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createHash(algorithm: string): HashStream;", - "mainBuggyLine": "132" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "152", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCREENSHOT = 1", - "mainBuggyLine": "152" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "171", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum PositionType", - "mainBuggyLine": "171" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "179", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LOCAL = 1 << 0", - "mainBuggyLine": "179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "187", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CLOUD = 1 << 1", - "mainBuggyLine": "187" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "198", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum AnalysisType", - "mainBuggyLine": "198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "206", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ANALYSIS_AESTHETICS_SCORE = 0", - "mainBuggyLine": "206" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "214", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ANALYSIS_LABEL", - "mainBuggyLine": "214" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "222", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ANALYSIS_OCR", - "mainBuggyLine": "222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "230", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ANALYSIS_FACE", - "mainBuggyLine": "230" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "238", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ANALYSIS_OBJECT", - "mainBuggyLine": "238" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "246", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ANALYSIS_RECOMMENDATION", - "mainBuggyLine": "246" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "254", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ANALYSIS_SEGMENTATION", - "mainBuggyLine": "254" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "262", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ANALYSIS_COMPOSITION", - "mainBuggyLine": "262" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "270", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ANALYSIS_SALIENCY", - "mainBuggyLine": "270" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "278", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ANALYSIS_DETAIL_ADDRESS", - "mainBuggyLine": "278" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "286", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ANALYSIS_HUMAN_FACE_TAG", - "mainBuggyLine": "286" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "294", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ANALYSIS_HEAD_POSITION", - "mainBuggyLine": "294" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "302", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ANALYSIS_BONE_POSE", - "mainBuggyLine": "302" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "310", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ANALYSIS_VIDEO_LABEL", - "mainBuggyLine": "310" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "420", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum DeliveryMode", - "mainBuggyLine": "420" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "427", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FAST_MODE = 0", - "mainBuggyLine": "427" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "435", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HIGH_QUALITY_MODE = 1", - "mainBuggyLine": "435" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "443", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "BALANCE_MODE = 2", - "mainBuggyLine": "443" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "454", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum SourceMode", - "mainBuggyLine": "454" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "462", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ORIGINAL_MODE = 0", - "mainBuggyLine": "462" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "471", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EDITED_MODE = 1", - "mainBuggyLine": "471" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "481", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface RequestOptions", - "mainBuggyLine": "481" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "489", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deliveryMode: DeliveryMode;", - "mainBuggyLine": "489" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "499", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sourceMode?: SourceMode", - "mainBuggyLine": "499" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "509", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface MediaAssetDataHandler", - "mainBuggyLine": "509" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "525", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDataPrepared(data: T, map?: Map): void;", - "mainBuggyLine": "525" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "536", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface PhotoProxy", - "mainBuggyLine": "536" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "544", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class MediaAssetManager", - "mainBuggyLine": "544" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "562", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static requestImage(\n context: Context,\n asset: PhotoAsset,\n requestOptions: RequestOptions,\n dataHandler: MediaAssetDataHandler\n ): Promise;", - "mainBuggyLine": "562" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "586", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static requestImageData(\n context: Context,\n asset: PhotoAsset,\n requestOptions: RequestOptions,\n dataHandler: MediaAssetDataHandler\n ): Promise;", - "mainBuggyLine": "586" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "610", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static requestMovingPhoto(\n context: Context,\n asset: PhotoAsset,\n requestOptions: RequestOptions,\n dataHandler: MediaAssetDataHandler\n ): Promise;", - "mainBuggyLine": "610" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "632", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static cancelRequest(context: Context, requestId: string): Promise;", - "mainBuggyLine": "632" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "652", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static requestVideoFile(\n context: Context,\n asset: PhotoAsset,\n requestOptions: RequestOptions,\n fileUri: string,\n dataHandler: MediaAssetDataHandler\n ): Promise;", - "mainBuggyLine": "652" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "674", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static loadMovingPhoto(\n context: Context,\n imageFileUri: string,\n videoFileUri: string\n ): Promise;", - "mainBuggyLine": "674" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "688", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type MemberType = number | string | boolean;", - "mainBuggyLine": "688" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "688", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type MemberType = number | string | boolean;", - "mainBuggyLine": "688" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "713", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly uri: string;", - "mainBuggyLine": "713" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "721", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly photoType: PhotoType;", - "mainBuggyLine": "721" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "729", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly displayName: string;", - "mainBuggyLine": "729" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "742", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "get(member: string): MemberType;", - "mainBuggyLine": "742" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "756", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "set(member: string, value: string): void;", - "mainBuggyLine": "756" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "834", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "open(mode: string, callback: AsyncCallback): void;", - "mainBuggyLine": "834" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "852", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "open(mode: string): Promise;", - "mainBuggyLine": "852" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "867", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getReadOnlyFd(callback: AsyncCallback): void;", - "mainBuggyLine": "867" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "882", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getReadOnlyFd(): Promise;", - "mainBuggyLine": "882" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "896", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "close(fd: number, callback: AsyncCallback): void;", - "mainBuggyLine": "896" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "910", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "close(fd: number): Promise;", - "mainBuggyLine": "910" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "924", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getThumbnail(callback: AsyncCallback): void;", - "mainBuggyLine": "924" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "939", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getThumbnail(size: image.Size, callback: AsyncCallback): void;", - "mainBuggyLine": "939" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "954", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getThumbnail(size?: image.Size): Promise;", - "mainBuggyLine": "954" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "973", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setFavorite(favoriteState: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "973" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "992", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setFavorite(favoriteState: boolean): Promise;", - "mainBuggyLine": "992" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1011", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setHidden(hiddenState: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "1011" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1030", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setHidden(hiddenState: boolean): Promise;", - "mainBuggyLine": "1030" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1049", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setUserComment(userComment: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1049" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1068", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setUserComment(userComment: string): Promise;", - "mainBuggyLine": "1068" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1084", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getExif(callback: AsyncCallback): void;", - "mainBuggyLine": "1084" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1100", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAnalysisData(analysisType: AnalysisType): Promise;", - "mainBuggyLine": "1100" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1116", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getExif(): Promise;", - "mainBuggyLine": "1116" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1132", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setPending(pendingState: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "1132" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1148", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setPending(pendingState: boolean): Promise;", - "mainBuggyLine": "1148" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1163", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isEdited(callback: AsyncCallback): void;", - "mainBuggyLine": "1163" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1178", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isEdited(): Promise;", - "mainBuggyLine": "1178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1193", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "requestEditData(callback: AsyncCallback): void;", - "mainBuggyLine": "1193" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1208", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "requestEditData(): Promise;", - "mainBuggyLine": "1208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1223", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getEditData(): Promise;", - "mainBuggyLine": "1223" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1238", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "requestSource(callback: AsyncCallback): void;", - "mainBuggyLine": "1238" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1253", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "requestSource(): Promise;", - "mainBuggyLine": "1253" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1270", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "commitEditedAsset(editData: string, uri: string, callback: AsyncCallback);", - "mainBuggyLine": "1270" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1287", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "commitEditedAsset(editData: string, uri: string): Promise;", - "mainBuggyLine": "1287" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1302", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "revertToOriginal(callback: AsyncCallback);", - "mainBuggyLine": "1302" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1317", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "revertToOriginal(): Promise;", - "mainBuggyLine": "1317" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1333", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "requestPhoto(callback: AsyncCallback): string;", - "mainBuggyLine": "1333" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1350", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "requestPhoto(options: RequestPhotoOptions, callback: AsyncCallback): string;", - "mainBuggyLine": "1350" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1365", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "cancelPhotoRequest(requestId: string): void;", - "mainBuggyLine": "1365" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1375", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum PhotoKeys", - "mainBuggyLine": "1375" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1382", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "URI = 'uri'", - "mainBuggyLine": "1382" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1389", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHOTO_TYPE = 'media_type'", - "mainBuggyLine": "1389" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1396", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DISPLAY_NAME = 'display_name'", - "mainBuggyLine": "1396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1403", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SIZE = 'size'", - "mainBuggyLine": "1403" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1410", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DATE_ADDED = 'date_added'", - "mainBuggyLine": "1410" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1417", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DATE_MODIFIED = 'date_modified'", - "mainBuggyLine": "1417" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1424", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DURATION = 'duration'", - "mainBuggyLine": "1424" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1431", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIDTH = 'width'", - "mainBuggyLine": "1431" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1438", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HEIGHT = 'height'", - "mainBuggyLine": "1438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1445", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DATE_TAKEN = 'date_taken'", - "mainBuggyLine": "1445" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1452", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ORIENTATION = 'orientation'", - "mainBuggyLine": "1452" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1459", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FAVORITE = 'is_favorite'", - "mainBuggyLine": "1459" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1466", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TITLE = 'title'", - "mainBuggyLine": "1466" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1474", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "POSITION = 'position'", - "mainBuggyLine": "1474" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1482", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DATE_TRASHED = 'date_trashed'", - "mainBuggyLine": "1482" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1490", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HIDDEN = 'hidden'", - "mainBuggyLine": "1490" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1498", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "USER_COMMENT = 'user_comment'", - "mainBuggyLine": "1498" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1506", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAMERA_SHOT_KEY = 'camera_shot_key'", - "mainBuggyLine": "1506" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1514", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DATE_YEAR = 'date_year'", - "mainBuggyLine": "1514" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1522", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DATE_MONTH = 'date_month'", - "mainBuggyLine": "1522" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1530", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DATE_DAY = 'date_day'", - "mainBuggyLine": "1530" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1538", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PENDING = 'pending'", - "mainBuggyLine": "1538" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1545", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DATE_ADDED_MS = 'date_added_ms'", - "mainBuggyLine": "1545" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1552", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DATE_MODIFIED_MS = 'date_modified_ms'", - "mainBuggyLine": "1552" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1560", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DATE_TRASHED_MS = 'date_trashed_ms'", - "mainBuggyLine": "1560" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1567", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHOTO_SUBTYPE = 'subtype'", - "mainBuggyLine": "1567" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1575", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MOVING_PHOTO_EFFECT_MODE = 'moving_photo_effect_mode'", - "mainBuggyLine": "1575" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1585", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum AlbumKeys", - "mainBuggyLine": "1585" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1592", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "URI = 'uri'", - "mainBuggyLine": "1592" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1599", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ALBUM_NAME = 'album_name'", - "mainBuggyLine": "1599" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1610", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum HiddenPhotosDisplayMode", - "mainBuggyLine": "1610" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1618", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ASSETS_MODE", - "mainBuggyLine": "1618" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1626", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ALBUMS_MODE", - "mainBuggyLine": "1626" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1636", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface FetchOptions", - "mainBuggyLine": "1636" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1644", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fetchColumns: Array;", - "mainBuggyLine": "1644" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1652", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "predicates: dataSharePredicates.DataSharePredicates;", - "mainBuggyLine": "1652" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1663", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface PhotoCreateOptions", - "mainBuggyLine": "1663" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1672", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "subtype?: PhotoSubtype;", - "mainBuggyLine": "1672" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1681", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "cameraShotKey?: string;", - "mainBuggyLine": "1681" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1735", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface RequestPhotoOptions", - "mainBuggyLine": "1735" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1744", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "size?: image.Size;", - "mainBuggyLine": "1744" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1753", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "requestPhotoType?: RequestPhotoType;", - "mainBuggyLine": "1753" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1763", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface FetchResult", - "mainBuggyLine": "1763" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1775", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getCount(): number;", - "mainBuggyLine": "1775" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1788", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isAfterLast(): boolean;", - "mainBuggyLine": "1788" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1800", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFirstObject(callback: AsyncCallback): void;", - "mainBuggyLine": "1800" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1812", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFirstObject(): Promise;", - "mainBuggyLine": "1812" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1826", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getNextObject(callback: AsyncCallback): void;", - "mainBuggyLine": "1826" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1840", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getNextObject(): Promise;", - "mainBuggyLine": "1840" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1852", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getLastObject(callback: AsyncCallback): void;", - "mainBuggyLine": "1852" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1864", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getLastObject(): Promise;", - "mainBuggyLine": "1864" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1877", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getObjectByPosition(index: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1877" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1890", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getObjectByPosition(index: number): Promise;", - "mainBuggyLine": "1890" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1902", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAllObjects(callback: AsyncCallback>): void;", - "mainBuggyLine": "1902" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1914", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAllObjects(): Promise>;", - "mainBuggyLine": "1914" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1925", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "close(): void;", - "mainBuggyLine": "1925" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1935", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum AlbumType", - "mainBuggyLine": "1935" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1942", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "USER = 0", - "mainBuggyLine": "1942" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1949", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SYSTEM = 1024", - "mainBuggyLine": "1949" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1957", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SMART = 4096", - "mainBuggyLine": "1957" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1967", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum AlbumSubtype", - "mainBuggyLine": "1967" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1974", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "USER_GENERIC = 1", - "mainBuggyLine": "1974" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1981", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FAVORITE = 1025", - "mainBuggyLine": "1981" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1988", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VIDEO", - "mainBuggyLine": "1988" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "1996", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HIDDEN", - "mainBuggyLine": "1996" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2004", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TRASH", - "mainBuggyLine": "2004" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2012", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCREENSHOT", - "mainBuggyLine": "2012" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2020", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAMERA", - "mainBuggyLine": "2020" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2028", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "IMAGE", - "mainBuggyLine": "2028" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2036", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SOURCE_GENERIC = 2049", - "mainBuggyLine": "2036" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2044", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CLASSIFY = 4097", - "mainBuggyLine": "2044" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2052", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GEOGRAPHY_LOCATION = 4099", - "mainBuggyLine": "2052" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2060", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GEOGRAPHY_CITY", - "mainBuggyLine": "2060" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2068", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SHOOTING_MODE", - "mainBuggyLine": "2068" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2076", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PORTRAIT", - "mainBuggyLine": "2076" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2084", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GROUP_PHOTO", - "mainBuggyLine": "2084" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2092", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HIGHLIGHT = 4104", - "mainBuggyLine": "2092" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2100", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HIGHLIGHT_SUGGESTIONS", - "mainBuggyLine": "2100" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2107", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ANY = 2147483647", - "mainBuggyLine": "2107" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2118", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum RequestPhotoType", - "mainBuggyLine": "2118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2126", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "REQUEST_ALL_THUMBNAILS = 0", - "mainBuggyLine": "2126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2134", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "REQUEST_FAST_THUMBNAIL", - "mainBuggyLine": "2134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2142", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "REQUEST_QUALITY_THUMBNAIL", - "mainBuggyLine": "2142" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2152", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AbsAlbum", - "mainBuggyLine": "2152" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2160", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly albumType: AlbumType;", - "mainBuggyLine": "2160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2168", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly albumSubtype: AlbumSubtype;", - "mainBuggyLine": "2168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2176", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "albumName: string;", - "mainBuggyLine": "2176" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2184", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly albumUri: string;", - "mainBuggyLine": "2184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2192", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly count: number;", - "mainBuggyLine": "2192" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2200", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly coverUri: string;", - "mainBuggyLine": "2200" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2215", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAssets(options: FetchOptions, callback: AsyncCallback>): void;", - "mainBuggyLine": "2215" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2230", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAssets(options: FetchOptions): Promise>;", - "mainBuggyLine": "2230" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2240", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Album", - "mainBuggyLine": "2240" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2240", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface Album", - "mainBuggyLine": "2240" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2249", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly imageCount?: number;", - "mainBuggyLine": "2249" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2258", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly videoCount?: number;", - "mainBuggyLine": "2258" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2272", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "commitModify(callback: AsyncCallback): void;", - "mainBuggyLine": "2272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2286", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "commitModify(): Promise;", - "mainBuggyLine": "2286" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2303", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addAssets(assets: Array, callback: AsyncCallback): void;", - "mainBuggyLine": "2303" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2320", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addAssets(assets: Array): Promise;", - "mainBuggyLine": "2320" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2337", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "removeAssets(assets: Array, callback: AsyncCallback): void;", - "mainBuggyLine": "2337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2354", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "removeAssets(assets: Array): Promise;", - "mainBuggyLine": "2354" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2373", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "recoverAssets(assets: Array, callback: AsyncCallback): void;", - "mainBuggyLine": "2373" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2392", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "recoverAssets(assets: Array): Promise;", - "mainBuggyLine": "2392" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2411", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deleteAssets(assets: Array, callback: AsyncCallback): void;", - "mainBuggyLine": "2411" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2430", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deleteAssets(assets: Array): Promise;", - "mainBuggyLine": "2430" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2449", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setCoverUri(uri: string, callback: AsyncCallback): void;", - "mainBuggyLine": "2449" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2468", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setCoverUri(uri: string): Promise;", - "mainBuggyLine": "2468" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2501", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAssets(options: FetchOptions, callback: AsyncCallback>): void;", - "mainBuggyLine": "2501" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2516", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAssets(options: FetchOptions): Promise>;", - "mainBuggyLine": "2516" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2534", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createAsset(displayName: string, callback: AsyncCallback): void;", - "mainBuggyLine": "2534" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2552", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createAsset(displayName: string): Promise;", - "mainBuggyLine": "2552" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2571", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createAsset(displayName: string, options: PhotoCreateOptions): Promise;", - "mainBuggyLine": "2571" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2590", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createAsset(displayName: string, options: PhotoCreateOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "2590" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2722", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createAlbum(name: string, callback: AsyncCallback): void;", - "mainBuggyLine": "2722" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2742", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createAlbum(name: string): Promise;", - "mainBuggyLine": "2742" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2761", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deleteAlbums(albums: Array, callback: AsyncCallback): void;", - "mainBuggyLine": "2761" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2780", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deleteAlbums(albums: Array): Promise;", - "mainBuggyLine": "2780" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2797", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAlbums(\n type: AlbumType,\n subtype: AlbumSubtype,\n options: FetchOptions,\n callback: AsyncCallback>\n ): void;", - "mainBuggyLine": "2797" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2818", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAlbums(type: AlbumType, subtype: AlbumSubtype, callback: AsyncCallback>): void;", - "mainBuggyLine": "2818" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2835", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAlbums(type: AlbumType, subtype: AlbumSubtype, options?: FetchOptions): Promise>;", - "mainBuggyLine": "2835" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2852", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getHiddenAlbums(mode: HiddenPhotosDisplayMode, options: FetchOptions, callback: AsyncCallback>): void;", - "mainBuggyLine": "2852" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2868", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getHiddenAlbums(mode: HiddenPhotosDisplayMode, callback: AsyncCallback>): void;", - "mainBuggyLine": "2868" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2885", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getHiddenAlbums(mode: HiddenPhotosDisplayMode, options?: FetchOptions): Promise>;", - "mainBuggyLine": "2885" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2905", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deleteAssets(uriList: Array, callback: AsyncCallback): void;", - "mainBuggyLine": "2905" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2925", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deleteAssets(uriList: Array): Promise;", - "mainBuggyLine": "2925" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2939", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "registerChange(uri: string, forChildUris: boolean, callback: Callback): void;", - "mainBuggyLine": "2939" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2952", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "unRegisterChange(uri: string, callback?: Callback): void;", - "mainBuggyLine": "2952" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2969", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createDeleteRequest(uriList: Array, callback: AsyncCallback): void;", - "mainBuggyLine": "2969" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "2986", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createDeleteRequest(uriList: Array): Promise;", - "mainBuggyLine": "2986" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3005", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPhotoIndex(photoUri: string, albumUri: string, options: FetchOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "3005" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3024", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPhotoIndex(photoUri: string, albumUri: string, options: FetchOptions): Promise;", - "mainBuggyLine": "3024" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3036", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(callback: AsyncCallback): void;", - "mainBuggyLine": "3036" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3048", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(): Promise;", - "mainBuggyLine": "3048" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3064", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "saveFormInfo(info: FormInfo, callback: AsyncCallback): void;", - "mainBuggyLine": "3064" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3080", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "saveFormInfo(info: FormInfo): Promise;", - "mainBuggyLine": "3080" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3096", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "removeFormInfo(info: FormInfo, callback: AsyncCallback): void;", - "mainBuggyLine": "3096" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3112", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "removeFormInfo(info: FormInfo): Promise;", - "mainBuggyLine": "3112" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3138", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface FormInfo", - "mainBuggyLine": "3138" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3147", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "formId: string;", - "mainBuggyLine": "3147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3156", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "uri: string;", - "mainBuggyLine": "3156" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3166", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum NotifyType", - "mainBuggyLine": "3166" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3173", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NOTIFY_ADD", - "mainBuggyLine": "3173" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3180", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NOTIFY_UPDATE", - "mainBuggyLine": "3180" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3187", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NOTIFY_REMOVE", - "mainBuggyLine": "3187" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3194", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NOTIFY_ALBUM_ADD_ASSET", - "mainBuggyLine": "3194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3201", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NOTIFY_ALBUM_REMOVE_ASSET", - "mainBuggyLine": "3201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3211", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum DefaultChangeUri", - "mainBuggyLine": "3211" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3218", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEFAULT_PHOTO_URI = 'file://media/Photo'", - "mainBuggyLine": "3218" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3225", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEFAULT_ALBUM_URI = 'file://media/PhotoAlbum'", - "mainBuggyLine": "3225" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3233", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEFAULT_HIDDEN_ALBUM_URI = 'file://media/HiddenAlbum'", - "mainBuggyLine": "3233" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3243", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ChangeData", - "mainBuggyLine": "3243" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3251", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type: NotifyType;", - "mainBuggyLine": "3251" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3259", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "uris: Array;", - "mainBuggyLine": "3259" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3267", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "extraUris: Array;", - "mainBuggyLine": "3267" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3702", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class MediaAssetEditData", - "mainBuggyLine": "3702" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3716", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(compatibleFormat: string, formatVersion: string);", - "mainBuggyLine": "3716" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3726", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "compatibleFormat: string;", - "mainBuggyLine": "3726" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3736", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "formatVersion: string;", - "mainBuggyLine": "3736" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3746", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "data: string;", - "mainBuggyLine": "3746" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3783", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHOTO_PROXY = 3", - "mainBuggyLine": "3783" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3794", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum MovingPhotoEffectMode", - "mainBuggyLine": "3794" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3802", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEFAULT = 0", - "mainBuggyLine": "3802" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3811", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "BOUNCE_PLAY = 1", - "mainBuggyLine": "3811" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3820", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LOOP_PLAY = 2", - "mainBuggyLine": "3820" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3829", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LONG_EXPOSURE = 3", - "mainBuggyLine": "3829" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3838", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MULTI_EXPOSURE = 4", - "mainBuggyLine": "3838" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3870", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(asset: PhotoAsset);", - "mainBuggyLine": "3870" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3886", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static createImageAssetRequest(context: Context, fileUri: string): MediaAssetChangeRequest;", - "mainBuggyLine": "3886" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3902", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static createVideoAssetRequest(context: Context, fileUri: string): MediaAssetChangeRequest;", - "mainBuggyLine": "3902" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3921", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static createAssetRequest(context: Context, displayName: string, options?: PhotoCreateOptions): MediaAssetChangeRequest;", - "mainBuggyLine": "3921" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3956", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static deleteAssets(context: Context, assets: Array): Promise;", - "mainBuggyLine": "3956" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3974", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static deleteAssets(context: Context, uriList: Array): Promise;", - "mainBuggyLine": "3974" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3986", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAsset(): PhotoAsset;", - "mainBuggyLine": "3986" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4000", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setFavorite(favoriteState: boolean): void;", - "mainBuggyLine": "4000" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4014", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setHidden(hiddenState: boolean): void;", - "mainBuggyLine": "4014" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4028", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setUserComment(userComment: string): void;", - "mainBuggyLine": "4028" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4043", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setLocation(longitude: number, latitude: number): void;", - "mainBuggyLine": "4043" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4055", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setTitle(title: string): void;", - "mainBuggyLine": "4055" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4069", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setEditData(editData: MediaAssetEditData): void;", - "mainBuggyLine": "4069" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4084", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getWriteCacheHandler(): Promise;", - "mainBuggyLine": "4084" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4131", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addResource(type: ResourceType, proxy: PhotoProxy): void;", - "mainBuggyLine": "4131" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4145", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setCameraShotKey(cameraShotKey: string): void;", - "mainBuggyLine": "4145" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4155", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "saveCameraPhoto(): void;", - "mainBuggyLine": "4155" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4170", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setEffectMode(mode: MovingPhotoEffectMode): void;", - "mainBuggyLine": "4170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4181", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class MediaAssetsChangeRequest", - "mainBuggyLine": "4181" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4194", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(assets: Array);", - "mainBuggyLine": "4194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4208", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setFavorite(favoriteState: boolean): void;", - "mainBuggyLine": "4208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4222", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setHidden(hiddenState: boolean): void;", - "mainBuggyLine": "4222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4236", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setUserComment(userComment: string): void;", - "mainBuggyLine": "4236" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4246", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class MediaAlbumChangeRequest", - "mainBuggyLine": "4246" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4257", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(album: Album);", - "mainBuggyLine": "4257" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4274", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static createAlbumRequest(context: Context, name: string): MediaAlbumChangeRequest;", - "mainBuggyLine": "4274" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4293", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static deleteAlbums(context: Context, albums: Array): Promise;", - "mainBuggyLine": "4293" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4305", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAlbum(): Album;", - "mainBuggyLine": "4305" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4319", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setCoverUri(coverUri: string): void;", - "mainBuggyLine": "4319" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4331", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setAlbumName(name: string): void;", - "mainBuggyLine": "4331" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4344", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addAssets(assets: Array): void;", - "mainBuggyLine": "4344" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4357", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "removeAssets(assets: Array): void;", - "mainBuggyLine": "4357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4373", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "moveAssets(assets: Array, targetAlbum: Album): void;", - "mainBuggyLine": "4373" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4388", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "recoverAssets(assets: Array): void;", - "mainBuggyLine": "4388" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4403", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deleteAssets(assets: Array): void;", - "mainBuggyLine": "4403" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4416", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setIsMe(): void;", - "mainBuggyLine": "4416" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4430", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setDisplayLevel(displayLevel: number): void;", - "mainBuggyLine": "4430" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4445", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dismissAssets(assets: Array): void;", - "mainBuggyLine": "4445" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4460", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "mergeAlbum(target: Album): void;", - "mainBuggyLine": "4460" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4474", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "placeBefore(album: Album): void;", - "mainBuggyLine": "4474" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4487", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dismiss(): void;", - "mainBuggyLine": "4487" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4497", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface MovingPhoto", - "mainBuggyLine": "4497" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4512", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "requestContent(imageFileUri: string, videoFileUri: string): Promise;", - "mainBuggyLine": "4512" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4528", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "requestContent(resourceType: ResourceType, fileUri: string): Promise;", - "mainBuggyLine": "4528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4543", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "requestContent(resourceType: ResourceType): Promise;", - "mainBuggyLine": "4543" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4555", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getUri(): string;", - "mainBuggyLine": "4555" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4566", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum HighlightAlbumInfoType", - "mainBuggyLine": "4566" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4574", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COVER_INFO = 0", - "mainBuggyLine": "4574" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4582", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PLAY_INFO", - "mainBuggyLine": "4582" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4593", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum HighlightUserActionType", - "mainBuggyLine": "4593" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4601", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INSERTED_PIC_COUNT = 0", - "mainBuggyLine": "4601" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4609", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "REMOVED_PIC_COUNT", - "mainBuggyLine": "4609" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4617", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SHARED_SCREENSHOT_COUNT", - "mainBuggyLine": "4617" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4625", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SHARED_COVER_COUNT", - "mainBuggyLine": "4625" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4633", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RENAMED_COUNT", - "mainBuggyLine": "4633" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4641", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CHANGED_COVER_COUNT", - "mainBuggyLine": "4641" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4649", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RENDER_VIEWED_TIMES = 100", - "mainBuggyLine": "4649" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4657", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RENDER_VIEWED_DURATION", - "mainBuggyLine": "4657" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4665", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ART_LAYOUT_VIEWED_TIMES", - "mainBuggyLine": "4665" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4673", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ART_LAYOUT_VIEWED_DURATION", - "mainBuggyLine": "4673" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4683", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class HighlightAlbum", - "mainBuggyLine": "4683" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4696", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(album: Album);", - "mainBuggyLine": "4696" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4713", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getHighlightAlbumInfo(type: HighlightAlbumInfoType): Promise;", - "mainBuggyLine": "4713" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4730", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getHighlightResource(resourceUri: string): Promise;", - "mainBuggyLine": "4730" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "4748", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setHighlightUserActionData(type: HighlightUserActionType, actionData: number): Promise;", - "mainBuggyLine": "4748" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.file.photoAccessHelper.d.ts", - "codeContextStaerLine": "3371", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [MIMEType] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "MIMEType?: PhotoViewMIMETypes;", - "mainBuggyLine": "3371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.PhotoPickerComponent.d.ets", - "codeContextStaerLine": "30", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct PhotoPickerComponent", - "mainBuggyLine": "30" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.PhotoPickerComponent.d.ets", - "codeContextStaerLine": "111", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "@ObjectLink\n pickerController: PickerController;", - "mainBuggyLine": "111" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.PhotoPickerComponent.d.ets", - "codeContextStaerLine": "162", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare class PickerOptions", - "mainBuggyLine": "162" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.PhotoPickerComponent.d.ets", - "codeContextStaerLine": "388", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "curve?: Curve | ICurve | string;", - "mainBuggyLine": "388" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts", - "codeContextStaerLine": "215", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class PhotoSaveOptions", - "mainBuggyLine": "215" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts", - "codeContextStaerLine": "223", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "newFileNames?: Array;", - "mainBuggyLine": "223" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts", - "codeContextStaerLine": "246", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "246" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts", - "codeContextStaerLine": "255", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(context: Context);", - "mainBuggyLine": "255" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts", - "codeContextStaerLine": "320", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "save(option?: PhotoSaveOptions): Promise>;", - "mainBuggyLine": "320" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts", - "codeContextStaerLine": "330", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "save(option: PhotoSaveOptions, callback: AsyncCallback>): void;", - "mainBuggyLine": "330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts", - "codeContextStaerLine": "339", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "save(callback: AsyncCallback>): void;", - "mainBuggyLine": "339" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts", - "codeContextStaerLine": "634", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "634" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts", - "codeContextStaerLine": "643", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(context: Context);", - "mainBuggyLine": "643" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts", - "codeContextStaerLine": "774", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class AudioSelectOptions", - "mainBuggyLine": "774" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts", - "codeContextStaerLine": "793", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class AudioSaveOptions", - "mainBuggyLine": "793" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts", - "codeContextStaerLine": "809", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "newFileNames?: Array;", - "mainBuggyLine": "809" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts", - "codeContextStaerLine": "818", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class AudioViewPicker", - "mainBuggyLine": "818" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts", - "codeContextStaerLine": "825", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "825" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts", - "codeContextStaerLine": "834", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(context: Context);", - "mainBuggyLine": "834" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts", - "codeContextStaerLine": "853", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "select(option?: AudioSelectOptions): Promise>;", - "mainBuggyLine": "853" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts", - "codeContextStaerLine": "872", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "select(option: AudioSelectOptions, callback: AsyncCallback>): void;", - "mainBuggyLine": "872" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts", - "codeContextStaerLine": "889", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "select(callback: AsyncCallback>): void;", - "mainBuggyLine": "889" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts", - "codeContextStaerLine": "908", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "save(option?: AudioSaveOptions): Promise>;", - "mainBuggyLine": "908" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts", - "codeContextStaerLine": "927", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "save(option: AudioSaveOptions, callback: AsyncCallback>): void;", - "mainBuggyLine": "927" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts", - "codeContextStaerLine": "944", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "save(callback: AsyncCallback>): void;", - "mainBuggyLine": "944" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.securityLabel.d.ts", - "codeContextStaerLine": "37", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type DataLevel = 's0' | 's1' | 's2' | 's3' | 's4';", - "mainBuggyLine": "37" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.storageStatistics.d.ts", - "codeContextStaerLine": "124", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "appSize: number;", - "mainBuggyLine": "124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.storageStatistics.d.ts", - "codeContextStaerLine": "132", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "cacheSize: number;", - "mainBuggyLine": "132" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.storageStatistics.d.ts", - "codeContextStaerLine": "140", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "dataSize: number;", - "mainBuggyLine": "140" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.storageStatistics.d.ts", - "codeContextStaerLine": "292", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "total: number;", - "mainBuggyLine": "292" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.storageStatistics.d.ts", - "codeContextStaerLine": "301", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "audio: number;", - "mainBuggyLine": "301" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.storageStatistics.d.ts", - "codeContextStaerLine": "310", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "video: number;", - "mainBuggyLine": "310" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.storageStatistics.d.ts", - "codeContextStaerLine": "319", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "image: number;", - "mainBuggyLine": "319" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.storageStatistics.d.ts", - "codeContextStaerLine": "328", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "file: number;", - "mainBuggyLine": "328" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.storageStatistics.d.ts", - "codeContextStaerLine": "337", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "app: number;", - "mainBuggyLine": "337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.volumeManager.d.ts", - "codeContextStaerLine": "48", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "id: string;", - "mainBuggyLine": "48" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.volumeManager.d.ts", - "codeContextStaerLine": "57", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uuid: string;", - "mainBuggyLine": "57" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.volumeManager.d.ts", - "codeContextStaerLine": "66", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "diskId: string;", - "mainBuggyLine": "66" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.volumeManager.d.ts", - "codeContextStaerLine": "75", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "description: string;", - "mainBuggyLine": "75" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.volumeManager.d.ts", - "codeContextStaerLine": "84", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "removable: boolean;", - "mainBuggyLine": "84" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.volumeManager.d.ts", - "codeContextStaerLine": "93", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "state: number;", - "mainBuggyLine": "93" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.volumeManager.d.ts", - "codeContextStaerLine": "102", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "path: string;", - "mainBuggyLine": "102" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "157", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type MemberType = number | string | boolean;", - "mainBuggyLine": "157" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "166", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type ChangeEvent =\n 'deviceChange'\n | 'albumChange'\n | 'imageChange'\n | 'audioChange'\n | 'videoChange'\n | 'remoteFileChange';", - "mainBuggyLine": "166" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "190", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly uri: string;", - "mainBuggyLine": "190" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "198", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly fileType: FileType;", - "mainBuggyLine": "198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "206", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "displayName: string;", - "mainBuggyLine": "206" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "719", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fetchColumns: Array;", - "mainBuggyLine": "719" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "727", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "predicates: dataSharePredicates.DataSharePredicates;", - "mainBuggyLine": "727" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "746", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "predicates: dataSharePredicates.DataSharePredicates;", - "mainBuggyLine": "746" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "765", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "subType?: PhotoSubType;", - "mainBuggyLine": "765" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "1038", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly albumType: AlbumType;", - "mainBuggyLine": "1038" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "1046", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly albumSubType: AlbumSubType;", - "mainBuggyLine": "1046" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "1054", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "albumName: string;", - "mainBuggyLine": "1054" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "1062", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly albumUri: string;", - "mainBuggyLine": "1062" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "1070", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly dateModified: number;", - "mainBuggyLine": "1070" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "1078", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly count: number;", - "mainBuggyLine": "1078" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "1086", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "coverUri: string;", - "mainBuggyLine": "1086" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "1121", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface Album", - "mainBuggyLine": "1121" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "1782", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: NotifyType;", - "mainBuggyLine": "1782" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "1790", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uris: Array;", - "mainBuggyLine": "1790" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "1798", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "subUris: Array;", - "mainBuggyLine": "1798" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "1817", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly deviceName: string;", - "mainBuggyLine": "1817" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "1825", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly networkId: string;", - "mainBuggyLine": "1825" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "1833", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly isOnline: boolean;", - "mainBuggyLine": "1833" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts", - "codeContextStaerLine": "1871", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface PrivateAlbum", - "mainBuggyLine": "1871" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.fileshare.d.ts", - "codeContextStaerLine": "104", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type PolicyErrorResult = {\n /**\n * Indicates the failed uri of the policy information.\n *\n * @type { string }\n * @syscap SystemCapability.FileManagement.AppFileService.FolderAuthorization\n * @since 11\n */\n uri: string;\n\n /**\n * Indicates the error code of the failure in the policy information.\n *\n * @type { PolicyErrorCode }\n * @syscap SystemCapability.FileManagement.AppFileService.FolderAuthorization\n * @since 11\n */\n code: PolicyErrorCode;\n\n /**\n * Indicates the reason of the failure in the policy information.\n *\n * @type { string }\n * @syscap SystemCapability.FileManagement.AppFileService.FolderAuthorization\n * @since 11\n */\n message: string;\n };", - "mainBuggyLine": "104" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "34", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " declare namespace geolocation", - "mainBuggyLine": "34" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "465", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface SatelliteStatusInfo", - "mainBuggyLine": "465" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "471", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "satellitesNumber: number;", - "mainBuggyLine": "471" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "478", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "satelliteIds: Array;", - "mainBuggyLine": "478" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "485", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "carrierToNoiseDensitys: Array;", - "mainBuggyLine": "485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "492", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "altitudes: Array;", - "mainBuggyLine": "492" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "499", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "azimuths: Array;", - "mainBuggyLine": "499" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "506", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "carrierFrequencies: Array;", - "mainBuggyLine": "506" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "519", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface CachedGnssLocationsRequest", - "mainBuggyLine": "519" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "525", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "reportingPeriodSec: number;", - "mainBuggyLine": "525" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "532", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "wakeUpCacheQueueFull: boolean;", - "mainBuggyLine": "532" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "545", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface GeofenceRequest", - "mainBuggyLine": "545" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "551", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "priority: LocationRequestPriority;", - "mainBuggyLine": "551" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "558", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "scenario: LocationRequestScenario;", - "mainBuggyLine": "558" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "565", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "geofence: Geofence;", - "mainBuggyLine": "565" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "578", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface Geofence", - "mainBuggyLine": "578" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "584", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "latitude: number;", - "mainBuggyLine": "584" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "591", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "longitude: number;", - "mainBuggyLine": "591" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "598", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "radius: number;", - "mainBuggyLine": "598" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "605", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "expiration: number;", - "mainBuggyLine": "605" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "618", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface ReverseGeoCodeRequest", - "mainBuggyLine": "618" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "624", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "locale?: string;", - "mainBuggyLine": "624" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "631", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "latitude: number;", - "mainBuggyLine": "631" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "638", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "longitude: number;", - "mainBuggyLine": "638" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "645", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "maxItems?: number;", - "mainBuggyLine": "645" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "658", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface GeoCodeRequest", - "mainBuggyLine": "658" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "664", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "locale?: string;", - "mainBuggyLine": "664" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "671", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "description: string;", - "mainBuggyLine": "671" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "678", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "maxItems?: number;", - "mainBuggyLine": "678" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "685", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "minLatitude?: number;", - "mainBuggyLine": "685" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "692", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "minLongitude?: number;", - "mainBuggyLine": "692" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "699", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "maxLatitude?: number;", - "mainBuggyLine": "699" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "706", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "maxLongitude?: number;", - "mainBuggyLine": "706" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "719", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface GeoAddress", - "mainBuggyLine": "719" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "730", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "latitude?: number;", - "mainBuggyLine": "730" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "742", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "longitude?: number;", - "mainBuggyLine": "742" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "753", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "locale?: string;", - "mainBuggyLine": "753" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "763", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "placeName?: string;", - "mainBuggyLine": "763" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "773", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "countryCode?: string;", - "mainBuggyLine": "773" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "783", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "countryName?: string;", - "mainBuggyLine": "783" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "793", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "administrativeArea?: string;", - "mainBuggyLine": "793" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "803", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "subAdministrativeArea?: string;", - "mainBuggyLine": "803" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "813", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "locality?: string;", - "mainBuggyLine": "813" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "823", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "subLocality?: string;", - "mainBuggyLine": "823" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "833", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "roadName?: string;", - "mainBuggyLine": "833" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "843", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "subRoadName?: string;", - "mainBuggyLine": "843" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "853", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "premises?: string;", - "mainBuggyLine": "853" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "863", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "postalCode?: string;", - "mainBuggyLine": "863" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "873", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "phoneNumber?: string;", - "mainBuggyLine": "873" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "883", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "addressUrl?: string;", - "mainBuggyLine": "883" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "893", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "descriptions?: Array;", - "mainBuggyLine": "893" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "903", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "descriptionsSize?: number;", - "mainBuggyLine": "903" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "916", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface LocationRequest", - "mainBuggyLine": "916" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "922", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "priority?: LocationRequestPriority;", - "mainBuggyLine": "922" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "929", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "scenario?: LocationRequestScenario;", - "mainBuggyLine": "929" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "936", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "timeInterval?: number;", - "mainBuggyLine": "936" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "943", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "distanceInterval?: number;", - "mainBuggyLine": "943" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "950", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "maxAccuracy?: number;", - "mainBuggyLine": "950" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "963", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface CurrentLocationRequest", - "mainBuggyLine": "963" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "969", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "priority?: LocationRequestPriority;", - "mainBuggyLine": "969" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "976", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "scenario?: LocationRequestScenario;", - "mainBuggyLine": "976" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "983", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "maxAccuracy?: number;", - "mainBuggyLine": "983" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "990", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "timeoutMs?: number;", - "mainBuggyLine": "990" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1003", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface Location", - "mainBuggyLine": "1003" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1014", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "latitude: number;", - "mainBuggyLine": "1014" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1026", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "longitude: number;", - "mainBuggyLine": "1026" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1036", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "altitude: number;", - "mainBuggyLine": "1036" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1046", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "accuracy: number;", - "mainBuggyLine": "1046" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1056", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "speed: number;", - "mainBuggyLine": "1056" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1066", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "timeStamp: number;", - "mainBuggyLine": "1066" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1076", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "direction: number;", - "mainBuggyLine": "1076" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1086", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "timeSinceBoot: number;", - "mainBuggyLine": "1086" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1096", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "additions?: Array;", - "mainBuggyLine": "1096" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1106", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "additionSize?: number;", - "mainBuggyLine": "1106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1119", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export enum LocationRequestPriority", - "mainBuggyLine": "1119" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1159", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export enum LocationRequestScenario", - "mainBuggyLine": "1159" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1212", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export enum GeoLocationErrorCode", - "mainBuggyLine": "1212" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1221", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "INPUT_PARAMS_ERROR", - "mainBuggyLine": "1221" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1231", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "REVERSE_GEOCODE_ERROR", - "mainBuggyLine": "1231" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1241", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "GEOCODE_ERROR", - "mainBuggyLine": "1241" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1251", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "LOCATOR_ERROR", - "mainBuggyLine": "1251" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1261", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "LOCATION_SWITCH_ERROR", - "mainBuggyLine": "1261" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1271", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "LAST_KNOWN_LOCATION_ERROR", - "mainBuggyLine": "1271" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1281", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "LOCATION_REQUEST_TIMEOUT_ERROR", - "mainBuggyLine": "1281" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1294", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export enum LocationPrivacyType", - "mainBuggyLine": "1294" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1327", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface LocationCommand", - "mainBuggyLine": "1327" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1333", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "scenario: LocationRequestScenario;", - "mainBuggyLine": "1333" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts", - "codeContextStaerLine": "1340", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "command: string;", - "mainBuggyLine": "1340" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "40", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare namespace geoLocationManager", - "mainBuggyLine": "40" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "170", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'locationEnabledChange', callback: Callback): void;", - "mainBuggyLine": "170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "183", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'locationEnabledChange', callback?: Callback): void;", - "mainBuggyLine": "183" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "201", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'cachedGnssLocationsChange', request: CachedGnssLocationsRequest, callback: Callback>): void;", - "mainBuggyLine": "201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "218", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'cachedGnssLocationsChange', callback?: Callback>): void;", - "mainBuggyLine": "218" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "234", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'satelliteStatusChange', callback: Callback): void;", - "mainBuggyLine": "234" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "250", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'satelliteStatusChange', callback?: Callback): void;", - "mainBuggyLine": "250" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "266", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'nmeaMessage', callback: Callback): void;", - "mainBuggyLine": "266" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "282", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'nmeaMessage', callback?: Callback): void;", - "mainBuggyLine": "282" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "300", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'gnssFenceStatusChange', request: GeofenceRequest, want: WantAgent): void;", - "mainBuggyLine": "300" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "318", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'gnssFenceStatusChange', request: GeofenceRequest, want: WantAgent): void;", - "mainBuggyLine": "318" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "332", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'countryCodeChange', callback: Callback): void;", - "mainBuggyLine": "332" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "346", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'countryCodeChange', callback?: Callback): void;", - "mainBuggyLine": "346" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "364", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'locatingRequiredDataChange', config: LocatingRequiredDataConfig, callback: Callback>): void;", - "mainBuggyLine": "364" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "379", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'locatingRequiredDataChange', callback?: Callback>): void;", - "mainBuggyLine": "379" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "393", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'locationIconStatusChange', callback: Callback): void;", - "mainBuggyLine": "393" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "407", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'locationIconStatusChange', callback?: Callback): void;", - "mainBuggyLine": "407" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "604", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function enableLocation(callback: AsyncCallback): void;", - "mainBuggyLine": "604" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "619", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function enableLocation(): Promise;", - "mainBuggyLine": "619" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "633", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function disableLocation(): void;", - "mainBuggyLine": "633" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "647", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAddressesFromLocation(request: ReverseGeoCodeRequest, callback: AsyncCallback>): void;", - "mainBuggyLine": "647" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "661", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAddressesFromLocation(request: ReverseGeoCodeRequest): Promise>;", - "mainBuggyLine": "661" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "675", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAddressesFromLocationName(request: GeoCodeRequest, callback: AsyncCallback>): void;", - "mainBuggyLine": "675" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "689", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAddressesFromLocationName(request: GeoCodeRequest): Promise>;", - "mainBuggyLine": "689" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "700", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isGeocoderAvailable(): boolean;", - "mainBuggyLine": "700" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "715", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getCachedGnssLocationsSize(callback: AsyncCallback): void;", - "mainBuggyLine": "715" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "729", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getCachedGnssLocationsSize(): Promise;", - "mainBuggyLine": "729" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "748", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function flushCachedGnssLocations(callback: AsyncCallback): void;", - "mainBuggyLine": "748" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "764", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function flushCachedGnssLocations(): Promise;", - "mainBuggyLine": "764" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "779", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function sendCommand(command: LocationCommand, callback: AsyncCallback): void;", - "mainBuggyLine": "779" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "792", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function sendCommand(command: LocationCommand): Promise;", - "mainBuggyLine": "792" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "805", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getCountryCode(callback: AsyncCallback): void;", - "mainBuggyLine": "805" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "817", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getCountryCode(): Promise;", - "mainBuggyLine": "817" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "830", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function enableLocationMock(): void;", - "mainBuggyLine": "830" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "843", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function disableLocationMock(): void;", - "mainBuggyLine": "843" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "858", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setMockedLocations(config: LocationMockConfig): void;", - "mainBuggyLine": "858" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "870", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function enableReverseGeocodingMock(): void;", - "mainBuggyLine": "870" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "882", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function disableReverseGeocodingMock(): void;", - "mainBuggyLine": "882" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "896", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setReverseGeocodingMockInfo(mockInfos: Array): void;", - "mainBuggyLine": "896" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "911", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isLocationPrivacyConfirmed(type: LocationPrivacyType): boolean;", - "mainBuggyLine": "911" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "928", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setLocationPrivacyConfirmStatus(type: LocationPrivacyType, isConfirmed: boolean): void;", - "mainBuggyLine": "928" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "944", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getLocatingRequiredData(config: LocatingRequiredDataConfig): Promise>;", - "mainBuggyLine": "944" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "961", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function addGnssGeofence(fenceRequest: GnssGeofenceRequest): Promise;", - "mainBuggyLine": "961" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "977", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function removeGnssGeofence(geofenceId: number): Promise;", - "mainBuggyLine": "977" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "988", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getGeofenceSupportedCoordTypes(): Array;", - "mainBuggyLine": "988" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1000", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getLocationIconStatus(): LocationIconStatus;", - "mainBuggyLine": "1000" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1010", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface ReverseGeocodingMockInfo", - "mainBuggyLine": "1010" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1019", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "location: ReverseGeoCodeRequest;", - "mainBuggyLine": "1019" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1029", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "geoAddress: GeoAddress;", - "mainBuggyLine": "1029" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1040", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface LocationMockConfig", - "mainBuggyLine": "1040" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1049", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "timeInterval: number;", - "mainBuggyLine": "1049" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1059", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "locations: Array;", - "mainBuggyLine": "1059" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1069", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface SatelliteStatusInfo", - "mainBuggyLine": "1069" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1077", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "satellitesNumber: number;", - "mainBuggyLine": "1077" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1086", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "satelliteIds: Array;", - "mainBuggyLine": "1086" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1095", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "carrierToNoiseDensitys: Array;", - "mainBuggyLine": "1095" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1104", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "altitudes: Array;", - "mainBuggyLine": "1104" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1113", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "azimuths: Array;", - "mainBuggyLine": "1113" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1122", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "carrierFrequencies: Array;", - "mainBuggyLine": "1122" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1131", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "satelliteConstellation: Array;", - "mainBuggyLine": "1131" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1140", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "satelliteAdditionalInfo: Array;", - "mainBuggyLine": "1140" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1150", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface CachedGnssLocationsRequest", - "mainBuggyLine": "1150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1158", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "reportingPeriodSec: number;", - "mainBuggyLine": "1158" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1167", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "wakeUpCacheQueueFull: boolean;", - "mainBuggyLine": "1167" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1177", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface GnssGeofenceRequest", - "mainBuggyLine": "1177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1185", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "geofence: Geofence;", - "mainBuggyLine": "1185" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1194", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "monitorTransitionEvents: Array;", - "mainBuggyLine": "1194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1203", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "notifications?: Array;", - "mainBuggyLine": "1203" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1212", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "geofenceTransitionCallback: AsyncCallback;", - "mainBuggyLine": "1212" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1222", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface GeofenceRequest", - "mainBuggyLine": "1222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1230", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "scenario: LocationRequestScenario;", - "mainBuggyLine": "1230" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1239", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "geofence: Geofence;", - "mainBuggyLine": "1239" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1249", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface Geofence", - "mainBuggyLine": "1249" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1257", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "latitude: number;", - "mainBuggyLine": "1257" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1266", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "longitude: number;", - "mainBuggyLine": "1266" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1275", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "coordinateSystemType?: CoordinateSystemType;", - "mainBuggyLine": "1275" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1284", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "radius: number;", - "mainBuggyLine": "1284" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1293", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "expiration: number;", - "mainBuggyLine": "1293" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1303", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface ReverseGeoCodeRequest", - "mainBuggyLine": "1303" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1311", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "locale?: string;", - "mainBuggyLine": "1311" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1320", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "country?: string;", - "mainBuggyLine": "1320" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1329", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "latitude: number;", - "mainBuggyLine": "1329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1338", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "longitude: number;", - "mainBuggyLine": "1338" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1347", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maxItems?: number;", - "mainBuggyLine": "1347" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1357", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface GeoCodeRequest", - "mainBuggyLine": "1357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1365", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "locale?: string;", - "mainBuggyLine": "1365" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1374", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "country?: string;", - "mainBuggyLine": "1374" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1383", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "description: string;", - "mainBuggyLine": "1383" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1392", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maxItems?: number;", - "mainBuggyLine": "1392" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1401", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "minLatitude?: number;", - "mainBuggyLine": "1401" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1410", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "minLongitude?: number;", - "mainBuggyLine": "1410" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1419", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maxLatitude?: number;", - "mainBuggyLine": "1419" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1428", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maxLongitude?: number;", - "mainBuggyLine": "1428" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1438", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface GeoAddress", - "mainBuggyLine": "1438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1448", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "latitude?: number;", - "mainBuggyLine": "1448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1459", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "longitude?: number;", - "mainBuggyLine": "1459" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1469", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "locale?: string;", - "mainBuggyLine": "1469" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1478", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "placeName?: string;", - "mainBuggyLine": "1478" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1487", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "countryCode?: string;", - "mainBuggyLine": "1487" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1496", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "countryName?: string;", - "mainBuggyLine": "1496" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1505", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "administrativeArea?: string;", - "mainBuggyLine": "1505" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1514", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "subAdministrativeArea?: string;", - "mainBuggyLine": "1514" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1523", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "locality?: string;", - "mainBuggyLine": "1523" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1532", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "subLocality?: string;", - "mainBuggyLine": "1532" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1541", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "roadName?: string;", - "mainBuggyLine": "1541" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1550", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "subRoadName?: string;", - "mainBuggyLine": "1550" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1559", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "premises?: string;", - "mainBuggyLine": "1559" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1568", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "postalCode?: string;", - "mainBuggyLine": "1568" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1577", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "phoneNumber?: string;", - "mainBuggyLine": "1577" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1586", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addressUrl?: string;", - "mainBuggyLine": "1586" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1595", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "descriptions?: Array;", - "mainBuggyLine": "1595" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1604", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "descriptionsSize?: number;", - "mainBuggyLine": "1604" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1614", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isFromMock?: Boolean;", - "mainBuggyLine": "1614" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1811", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface GeofenceTransition", - "mainBuggyLine": "1811" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1819", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "geofenceId: number;", - "mainBuggyLine": "1819" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "1828", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "transitionEvent: GeofenceTransitionEvent;", - "mainBuggyLine": "1828" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2103", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isFromMock?: Boolean;", - "mainBuggyLine": "2103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2163", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface LocatingRequiredDataConfig", - "mainBuggyLine": "2163" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2172", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type: LocatingRequiredDataType;", - "mainBuggyLine": "2172" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2182", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "needStartScan: boolean;", - "mainBuggyLine": "2182" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2193", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "scanInterval?: number;", - "mainBuggyLine": "2193" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2204", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "scanTimeout?: number;", - "mainBuggyLine": "2204" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2214", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface LocatingRequiredData", - "mainBuggyLine": "2214" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2223", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "wifiData?: WifiScanInfo;", - "mainBuggyLine": "2223" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2233", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bluetoothData?: BluetoothScanInfo;", - "mainBuggyLine": "2233" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2243", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface WifiScanInfo", - "mainBuggyLine": "2243" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2252", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ssid: string;", - "mainBuggyLine": "2252" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2262", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bssid: string;", - "mainBuggyLine": "2262" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2272", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "rssi: number;", - "mainBuggyLine": "2272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2282", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "frequency: number;", - "mainBuggyLine": "2282" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2292", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "timestamp: number;", - "mainBuggyLine": "2292" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2303", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface BluetoothScanInfo", - "mainBuggyLine": "2303" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2312", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deviceName: string;", - "mainBuggyLine": "2312" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2322", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "macAddress: string;", - "mainBuggyLine": "2322" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2332", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "rssi: number;", - "mainBuggyLine": "2332" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2342", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "timestamp: number;", - "mainBuggyLine": "2342" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2398", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum CoordinateSystemType", - "mainBuggyLine": "2398" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2405", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WGS84 = 1", - "mainBuggyLine": "2405" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2413", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GCJ02 = 2", - "mainBuggyLine": "2413" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2424", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum LocationIconStatus", - "mainBuggyLine": "2424" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2432", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LOCATING_NOT_STARTED = 0", - "mainBuggyLine": "2432" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2441", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LOCATING_STARTED = 1", - "mainBuggyLine": "2441" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2450", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HD_LOCATING_STARTED = 2", - "mainBuggyLine": "2450" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2515", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum GeofenceTransitionEvent", - "mainBuggyLine": "2515" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2522", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GEOFENCE_TRANSITION_EVENT_ENTER = 1", - "mainBuggyLine": "2522" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2530", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GEOFENCE_TRANSITION_EVENT_EXIT = 2", - "mainBuggyLine": "2530" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2538", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GEOFENCE_TRANSITION_EVENT_DWELL = 4", - "mainBuggyLine": "2538" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2548", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum SatelliteConstellationCategory", - "mainBuggyLine": "2548" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2555", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CONSTELLATION_CATEGORY_UNKNOWN = 0", - "mainBuggyLine": "2555" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2563", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CONSTELLATION_CATEGORY_GPS = 1", - "mainBuggyLine": "2563" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2571", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CONSTELLATION_CATEGORY_SBAS = 2", - "mainBuggyLine": "2571" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2579", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CONSTELLATION_CATEGORY_GLONASS = 3", - "mainBuggyLine": "2579" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2587", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CONSTELLATION_CATEGORY_QZSS = 4", - "mainBuggyLine": "2587" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2595", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CONSTELLATION_CATEGORY_BEIDOU = 5", - "mainBuggyLine": "2595" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2603", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CONSTELLATION_CATEGORY_GALILEO = 6", - "mainBuggyLine": "2603" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2611", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CONSTELLATION_CATEGORY_IRNSS = 7", - "mainBuggyLine": "2611" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2621", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum SatelliteAdditionalInfo", - "mainBuggyLine": "2621" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2628", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SATELLITES_ADDITIONAL_INFO_NULL = 0", - "mainBuggyLine": "2628" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2636", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SATELLITES_ADDITIONAL_INFO_EPHEMERIS_DATA_EXIST = 1", - "mainBuggyLine": "2636" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2644", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SATELLITES_ADDITIONAL_INFO_ALMANAC_DATA_EXIST = 2", - "mainBuggyLine": "2644" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2652", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SATELLITES_ADDITIONAL_INFO_USED_IN_FIX = 4", - "mainBuggyLine": "2652" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2660", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SATELLITES_ADDITIONAL_INFO_CARRIER_FREQUENCY_EXIST = 8", - "mainBuggyLine": "2660" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2966", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum LocationPrivacyType", - "mainBuggyLine": "2966" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2974", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OTHERS = 0", - "mainBuggyLine": "2974" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2983", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STARTUP", - "mainBuggyLine": "2983" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "2992", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CORE_LOCATION", - "mainBuggyLine": "2992" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "3002", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface LocationCommand", - "mainBuggyLine": "3002" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "3010", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "scenario: LocationRequestScenario;", - "mainBuggyLine": "3010" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "3019", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "command: string;", - "mainBuggyLine": "3019" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "3029", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface CountryCode", - "mainBuggyLine": "3029" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "3037", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "country: string;", - "mainBuggyLine": "3037" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "3046", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type: CountryCodeType;", - "mainBuggyLine": "3046" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "3056", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum CountryCodeType", - "mainBuggyLine": "3056" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "3063", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COUNTRY_CODE_FROM_LOCALE = 1", - "mainBuggyLine": "3063" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "3071", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COUNTRY_CODE_FROM_SIM", - "mainBuggyLine": "3071" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "3079", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COUNTRY_CODE_FROM_LOCATION", - "mainBuggyLine": "3079" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "3087", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COUNTRY_CODE_FROM_NETWORK", - "mainBuggyLine": "3087" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "3098", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum LocatingRequiredDataType", - "mainBuggyLine": "3098" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "3106", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI = 1", - "mainBuggyLine": "3106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "3115", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "BLUETOOTH", - "mainBuggyLine": "3115" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "91", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_locationChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'locationChange', request: LocationRequest | ContinuousLocationRequest,\n callback: Callback): void;", - "mainBuggyLine": "91" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "141", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_locationError] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'locationError', callback: Callback): void;", - "mainBuggyLine": "141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "157", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_locationError] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'locationError', callback?: Callback): void;", - "mainBuggyLine": "157" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "393", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_locationIconStatusChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'locationIconStatusChange', callback: Callback): void;", - "mainBuggyLine": "393" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "407", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_locationIconStatusChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'locationIconStatusChange', callback?: Callback): void;", - "mainBuggyLine": "407" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.geoLocationManager.d.ts", - "codeContextStaerLine": "91", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_05", - "description": "API check error of [limited api pair errors]: The on and off event subscription methods do not appear in pair.", - "language": "ts", - "mainBuggyCode": "function on(type: 'locationChange', request: LocationRequest | ContinuousLocationRequest,\n callback: Callback): void;", - "mainBuggyLine": "91" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.graphics.colorSpaceManager.d.ts", - "codeContextStaerLine": "362", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "redX: number;", - "mainBuggyLine": "362" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.graphics.colorSpaceManager.d.ts", - "codeContextStaerLine": "375", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "redY: number;", - "mainBuggyLine": "375" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.graphics.colorSpaceManager.d.ts", - "codeContextStaerLine": "388", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "greenX: number;", - "mainBuggyLine": "388" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.graphics.colorSpaceManager.d.ts", - "codeContextStaerLine": "401", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "greenY: number;", - "mainBuggyLine": "401" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.graphics.colorSpaceManager.d.ts", - "codeContextStaerLine": "414", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "blueX: number;", - "mainBuggyLine": "414" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.graphics.colorSpaceManager.d.ts", - "codeContextStaerLine": "427", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "blueY: number;", - "mainBuggyLine": "427" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.graphics.colorSpaceManager.d.ts", - "codeContextStaerLine": "440", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "whitePointX: number;", - "mainBuggyLine": "440" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.graphics.colorSpaceManager.d.ts", - "codeContextStaerLine": "453", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "whitePointY: number;", - "mainBuggyLine": "453" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiAppEvent.d.ts", - "codeContextStaerLine": "217", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "disable?: boolean;", - "mainBuggyLine": "217" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiAppEvent.d.ts", - "codeContextStaerLine": "226", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "maxStorage?: string;", - "mainBuggyLine": "226" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "775", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type GcStats = Record;", - "mainBuggyLine": "775" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "488", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [ABILITY_MANAGER] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const ABILITY_MANAGER: number;", - "mainBuggyLine": "488" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "496", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [ARKUI] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const ARKUI: number;", - "mainBuggyLine": "496" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "504", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [ARK] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const ARK: number;", - "mainBuggyLine": "504" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "512", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [BLUETOOTH] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const BLUETOOTH: number;", - "mainBuggyLine": "512" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "520", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [COMMON_LIBRARY] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const COMMON_LIBRARY: number;", - "mainBuggyLine": "520" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "528", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [DISTRIBUTED_HARDWARE_DEVICE_MANAGER] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const DISTRIBUTED_HARDWARE_DEVICE_MANAGER: number;", - "mainBuggyLine": "528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "536", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [DISTRIBUTED_AUDIO] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const DISTRIBUTED_AUDIO: number;", - "mainBuggyLine": "536" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "544", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [DISTRIBUTED_CAMERA] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const DISTRIBUTED_CAMERA: number;", - "mainBuggyLine": "544" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "552", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [DISTRIBUTED_DATA] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const DISTRIBUTED_DATA: number;", - "mainBuggyLine": "552" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "560", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [DISTRIBUTED_HARDWARE_FRAMEWORK] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const DISTRIBUTED_HARDWARE_FRAMEWORK: number;", - "mainBuggyLine": "560" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "568", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [DISTRIBUTED_INPUT] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const DISTRIBUTED_INPUT: number;", - "mainBuggyLine": "568" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "576", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [DISTRIBUTED_SCREEN] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const DISTRIBUTED_SCREEN: number;", - "mainBuggyLine": "576" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "584", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [DISTRIBUTED_SCHEDULER] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const DISTRIBUTED_SCHEDULER: number;", - "mainBuggyLine": "584" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "592", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [FFRT] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const FFRT: number;", - "mainBuggyLine": "592" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "600", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [FILE_MANAGEMENT] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const FILE_MANAGEMENT: number;", - "mainBuggyLine": "600" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "608", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [GLOBAL_RESOURCE_MANAGER] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const GLOBAL_RESOURCE_MANAGER: number;", - "mainBuggyLine": "608" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "616", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [GRAPHICS] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const GRAPHICS: number;", - "mainBuggyLine": "616" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "624", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [HDF] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const HDF: number;", - "mainBuggyLine": "624" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "632", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [MISC] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const MISC: number;", - "mainBuggyLine": "632" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "640", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [MULTIMODAL_INPUT] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const MULTIMODAL_INPUT: number;", - "mainBuggyLine": "640" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "648", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [NET] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const NET: number;", - "mainBuggyLine": "648" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "656", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [NOTIFICATION] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const NOTIFICATION: number;", - "mainBuggyLine": "656" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "664", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [NWEB] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const NWEB: number;", - "mainBuggyLine": "664" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "672", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [OHOS] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const OHOS: number;", - "mainBuggyLine": "672" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "680", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [POWER_MANAGER] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const POWER_MANAGER: number;", - "mainBuggyLine": "680" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "688", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [RPC] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const RPC: number;", - "mainBuggyLine": "688" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "696", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [SAMGR] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const SAMGR: number;", - "mainBuggyLine": "696" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "704", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [WINDOW_MANAGER] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const WINDOW_MANAGER: number;", - "mainBuggyLine": "704" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "712", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [AUDIO] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const AUDIO: number;", - "mainBuggyLine": "712" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "720", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [CAMERA] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const CAMERA: number;", - "mainBuggyLine": "720" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "728", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [IMAGE] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const IMAGE: number;", - "mainBuggyLine": "728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hidebug.d.ts", - "codeContextStaerLine": "736", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [MEDIA] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const MEDIA: number;", - "mainBuggyLine": "736" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiSysEvent.d.ts", - "codeContextStaerLine": "279", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rules: WatchRule[];", - "mainBuggyLine": "279" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiSysEvent.d.ts", - "codeContextStaerLine": "288", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onEvent: (info: SysEventInfo) => void;", - "mainBuggyLine": "288" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiSysEvent.d.ts", - "codeContextStaerLine": "297", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onServiceDied: () => void;", - "mainBuggyLine": "297" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiSysEvent.d.ts", - "codeContextStaerLine": "416", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onQuery: (infos: SysEventInfo[]) => void;", - "mainBuggyLine": "416" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiSysEvent.d.ts", - "codeContextStaerLine": "425", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onComplete: (reason: number, total: number) => void;", - "mainBuggyLine": "425" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "419", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "disable?: boolean;", - "mainBuggyLine": "419" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "434", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "maxStorage?: string;", - "mainBuggyLine": "434" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "466", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "domain: string;", - "mainBuggyLine": "466" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "481", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "481" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "496", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "eventType: EventType;", - "mainBuggyLine": "496" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "511", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "params: object;", - "mainBuggyLine": "511" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "598", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type ParamType = number | string | boolean | Array;", - "mainBuggyLine": "598" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "647", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "packageId: number;", - "mainBuggyLine": "647" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "662", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "row: number;", - "mainBuggyLine": "662" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "677", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "size: number;", - "mainBuggyLine": "677" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "692", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "data: string[];", - "mainBuggyLine": "692" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "818", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "row?: number;", - "mainBuggyLine": "818" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "833", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "size?: number;", - "mainBuggyLine": "833" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "848", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "timeOut?: number;", - "mainBuggyLine": "848" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "880", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "domain: string;", - "mainBuggyLine": "880" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "895", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "eventTypes?: EventType[];", - "mainBuggyLine": "895" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "967", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "967" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "982", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "triggerCondition?: TriggerCondition;", - "mainBuggyLine": "982" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "997", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "appEventFilters?: AppEventFilter[];", - "mainBuggyLine": "997" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "1012", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onTrigger?: (curRow: number, curSize: number, holder: AppEventPackageHolder) => void;", - "mainBuggyLine": "1012" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "235", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [APP_LAUNCH] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const APP_LAUNCH: string;", - "mainBuggyLine": "235" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "245", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [SCROLL_JANK] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const SCROLL_JANK: string;", - "mainBuggyLine": "245" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "255", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [CPU_USAGE_HIGH] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const CPU_USAGE_HIGH: string;", - "mainBuggyLine": "255" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "265", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [BATTERY_USAGE] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const BATTERY_USAGE: string;", - "mainBuggyLine": "265" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "275", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [RESOURCE_OVERLIMIT] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const RESOURCE_OVERLIMIT: string;", - "mainBuggyLine": "275" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "285", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [ADDRESS_SANITIZER] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const ADDRESS_SANITIZER: string;", - "mainBuggyLine": "285" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.hiviewdfx.hiAppEvent.d.ts", - "codeContextStaerLine": "295", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [MAIN_THREAD_JANK] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const MAIN_THREAD_JANK: string;", - "mainBuggyLine": "295" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "53", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export function getDisplayCountry(country: string, locale: string, sentenceCase?: boolean): string;", - "mainBuggyLine": "53" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "67", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export function getDisplayLanguage(language: string, locale: string, sentenceCase?: boolean): string;", - "mainBuggyLine": "67" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "78", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export function getSystemLanguage(): string;", - "mainBuggyLine": "78" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "89", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export function getSystemRegion(): string;", - "mainBuggyLine": "89" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "100", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export function getSystemLocale(): string;", - "mainBuggyLine": "100" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "164", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getDisplayCountry(country: string, locale: string, sentenceCase?: boolean): string;", - "mainBuggyLine": "164" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "205", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getDisplayLanguage(language: string, locale: string, sentenceCase?: boolean): string;", - "mainBuggyLine": "205" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "222", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getSystemLanguages(): Array;", - "mainBuggyLine": "222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "245", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getSystemCountries(language: string): Array;", - "mainBuggyLine": "245" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "270", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static isSuggested(language: string, region?: string): boolean;", - "mainBuggyLine": "270" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "311", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static setSystemLanguage(language: string): void;", - "mainBuggyLine": "311" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "337", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getSystemRegion(): string;", - "mainBuggyLine": "337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "351", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static setSystemRegion(region: string): void;", - "mainBuggyLine": "351" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "377", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getSystemLocale(): string;", - "mainBuggyLine": "377" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "391", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static setSystemLocale(locale: string): void;", - "mainBuggyLine": "391" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "441", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static set24HourClock(option: boolean): void;", - "mainBuggyLine": "441" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "456", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static addPreferredLanguage(language: string, index?: number): void;", - "mainBuggyLine": "456" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "470", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static removePreferredLanguage(index: number): void;", - "mainBuggyLine": "470" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "487", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getPreferredLanguageList(): Array;", - "mainBuggyLine": "487" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "504", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getFirstPreferredLanguage(): string;", - "mainBuggyLine": "504" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "525", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static setAppPreferredLanguage(language: string): void;", - "mainBuggyLine": "525" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "542", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getAppPreferredLanguage(): string;", - "mainBuggyLine": "542" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "556", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static setUsingLocalDigit(flag: boolean): void;", - "mainBuggyLine": "556" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "573", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getUsingLocalDigit(): boolean;", - "mainBuggyLine": "573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "585", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface Util", - "mainBuggyLine": "585" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "600", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "unitConvert(fromUnit: UnitInfo, toUnit: UnitInfo, value: number, locale: string, style?: string): string;", - "mainBuggyLine": "600" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "624", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export class I18NUtil", - "mainBuggyLine": "624" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "650", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static unitConvert(fromUnit: UnitInfo, toUnit: UnitInfo, value: number, locale: string, style?: string): string;", - "mainBuggyLine": "650" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "682", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getDateOrder(locale: string): string;", - "mainBuggyLine": "682" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "707", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getTimePeriodName(hour:number, locale?: string): string;", - "mainBuggyLine": "707" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "723", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getBestMatchLocale(locale: string, localeList: string[]): string;", - "mainBuggyLine": "723" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "737", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getThreeLetterLanguage(locale: string): string;", - "mainBuggyLine": "737" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "751", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getThreeLetterRegion(locale: string): string;", - "mainBuggyLine": "751" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "769", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface UnitInfo", - "mainBuggyLine": "769" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "783", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "unit: string;", - "mainBuggyLine": "783" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "783", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "unit: string;", - "mainBuggyLine": "783" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "798", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "measureSystem: string;", - "mainBuggyLine": "798" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "798", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "measureSystem: string;", - "mainBuggyLine": "798" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "824", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface PhoneNumberFormatOptions", - "mainBuggyLine": "824" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "855", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type?: string;", - "mainBuggyLine": "855" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "879", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export class PhoneNumberFormat", - "mainBuggyLine": "879" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "907", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(country: string, options?: PhoneNumberFormatOptions);", - "mainBuggyLine": "907" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "936", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isValidNumber(number: string): boolean;", - "mainBuggyLine": "936" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "965", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "format(number: string): string;", - "mainBuggyLine": "965" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "986", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getLocationName(number: string, locale: string): string;", - "mainBuggyLine": "986" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1025", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export function getCalendar(locale: string, type?: string): Calendar;", - "mainBuggyLine": "1025" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1048", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export class Calendar", - "mainBuggyLine": "1048" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1073", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setTime(date: Date): void;", - "mainBuggyLine": "1073" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1099", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setTime(time: number): void;", - "mainBuggyLine": "1099" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1140", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "set(year: number, month: number, date: number, hour?: number, minute?: number, second?: number): void;", - "mainBuggyLine": "1140" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1166", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setTimeZone(timezone: string): void;", - "mainBuggyLine": "1166" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1192", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getTimeZone(): string;", - "mainBuggyLine": "1192" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1218", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFirstDayOfWeek(): number;", - "mainBuggyLine": "1218" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1244", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setFirstDayOfWeek(value: number): void;", - "mainBuggyLine": "1244" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1270", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getMinimalDaysInFirstWeek(): number;", - "mainBuggyLine": "1270" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1296", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setMinimalDaysInFirstWeek(value: number): void;", - "mainBuggyLine": "1296" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1331", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "get(field: string): number;", - "mainBuggyLine": "1331" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1350", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getDisplayName(locale: string): string;", - "mainBuggyLine": "1350" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1382", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isWeekend(date?: Date): boolean;", - "mainBuggyLine": "1382" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1409", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "add(field: string, amount: number): void;", - "mainBuggyLine": "1409" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1428", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getTimeInMillis(): number;", - "mainBuggyLine": "1428" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1453", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "compareDays(date: Date): number;", - "mainBuggyLine": "1453" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1483", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export function isRTL(locale: string): boolean;", - "mainBuggyLine": "1483" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1502", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export function getLineInstance(locale: string): BreakIterator;", - "mainBuggyLine": "1502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1517", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export class BreakIterator", - "mainBuggyLine": "1517" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1533", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "current(): number;", - "mainBuggyLine": "1533" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1552", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "first(): number;", - "mainBuggyLine": "1552" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1571", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "last(): number;", - "mainBuggyLine": "1571" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1590", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "next(index?: number): number;", - "mainBuggyLine": "1590" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1607", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "previous(): number;", - "mainBuggyLine": "1607" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1624", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setLineBreakText(text: string): void;", - "mainBuggyLine": "1624" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1643", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "following(offset: number): number;", - "mainBuggyLine": "1643" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1660", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getLineBreakText(): string;", - "mainBuggyLine": "1660" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1683", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isBoundary(offset: number): boolean;", - "mainBuggyLine": "1683" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1705", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export function getInstance(locale?: string): IndexUtil;", - "mainBuggyLine": "1705" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1722", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export class IndexUtil", - "mainBuggyLine": "1722" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1738", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getIndexList(): Array;", - "mainBuggyLine": "1738" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1755", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addLocale(locale: string): void;", - "mainBuggyLine": "1755" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1774", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getIndex(text: string): string;", - "mainBuggyLine": "1774" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1785", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export class Character", - "mainBuggyLine": "1785" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1796", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isDigit(char: string): boolean;", - "mainBuggyLine": "1796" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1808", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isSpaceChar(char: string): boolean;", - "mainBuggyLine": "1808" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1820", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isWhitespace(char: string): boolean;", - "mainBuggyLine": "1820" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1832", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isRTL(char: string): boolean;", - "mainBuggyLine": "1832" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1844", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isIdeograph(char: string): boolean;", - "mainBuggyLine": "1844" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1856", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isLetter(char: string): boolean;", - "mainBuggyLine": "1856" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1868", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isLowerCase(char: string): boolean;", - "mainBuggyLine": "1868" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1880", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isUpperCase(char: string): boolean;", - "mainBuggyLine": "1880" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1892", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getType(char: string): string;", - "mainBuggyLine": "1892" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1916", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export class Unicode", - "mainBuggyLine": "1916" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1944", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static isDigit(char: string): boolean;", - "mainBuggyLine": "1944" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "1973", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static isSpaceChar(char: string): boolean;", - "mainBuggyLine": "1973" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2002", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static isWhitespace(char: string): boolean;", - "mainBuggyLine": "2002" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2031", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static isRTL(char: string): boolean;", - "mainBuggyLine": "2031" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2060", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static isIdeograph(char: string): boolean;", - "mainBuggyLine": "2060" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2089", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static isLetter(char: string): boolean;", - "mainBuggyLine": "2089" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2118", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static isLowerCase(char: string): boolean;", - "mainBuggyLine": "2118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2147", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static isUpperCase(char: string): boolean;", - "mainBuggyLine": "2147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2176", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getType(char: string): string;", - "mainBuggyLine": "2176" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2188", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export function is24HourClock(): boolean;", - "mainBuggyLine": "2188" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2201", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export function set24HourClock(option: boolean): boolean;", - "mainBuggyLine": "2201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2215", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export function addPreferredLanguage(language: string, index?: number): boolean;", - "mainBuggyLine": "2215" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2228", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export function removePreferredLanguage(index: number): boolean;", - "mainBuggyLine": "2228" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2239", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export function getPreferredLanguageList(): Array;", - "mainBuggyLine": "2239" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2250", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export function getFirstPreferredLanguage(): string;", - "mainBuggyLine": "2250" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2279", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export function getTimeZone(zoneID?: string): TimeZone;", - "mainBuggyLine": "2279" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2302", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export class TimeZone", - "mainBuggyLine": "2302" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2327", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getID(): string;", - "mainBuggyLine": "2327" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2338", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getDisplayName(locale?: string, isDST?: boolean): string;", - "mainBuggyLine": "2338" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2364", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getRawOffset(): number;", - "mainBuggyLine": "2364" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2393", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getOffset(date?: number): number;", - "mainBuggyLine": "2393" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2419", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getAvailableIDs(): Array;", - "mainBuggyLine": "2419" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2436", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getAvailableZoneCityIDs(): Array;", - "mainBuggyLine": "2436" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2457", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getCityDisplayName(cityID: string, locale: string): string;", - "mainBuggyLine": "2457" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2476", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getTimezoneFromCity(cityID: string): TimeZone;", - "mainBuggyLine": "2476" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2502", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getTimezonesByLocation(longitude: number, latitude: number): Array;", - "mainBuggyLine": "2502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2518", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export class Transliterator", - "mainBuggyLine": "2518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2534", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getAvailableIDs(): string[];", - "mainBuggyLine": "2534" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2557", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getInstance(id: string): Transliterator;", - "mainBuggyLine": "2557" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2576", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "transform(text: string): string;", - "mainBuggyLine": "2576" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2594", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum NormalizerMode", - "mainBuggyLine": "2594" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2608", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NFC = 1", - "mainBuggyLine": "2608" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2622", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NFD = 2", - "mainBuggyLine": "2622" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2636", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NFKC = 3", - "mainBuggyLine": "2636" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2650", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NFKD = 4", - "mainBuggyLine": "2650" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2666", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export class Normalizer", - "mainBuggyLine": "2666" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2686", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getInstance(mode: NormalizerMode): Normalizer;", - "mainBuggyLine": "2686" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2707", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "normalize(text: string): string;", - "mainBuggyLine": "2707" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2718", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum SuggestionType", - "mainBuggyLine": "2718" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2726", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SUGGESTION_TYPE_NONE = 0", - "mainBuggyLine": "2726" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2734", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SUGGESTION_TYPE_RELATED = 1", - "mainBuggyLine": "2734" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2742", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SUGGESTION_TYPE_SIM = 2", - "mainBuggyLine": "2742" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2753", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface SortOptions", - "mainBuggyLine": "2753" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2762", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "locale?: string;", - "mainBuggyLine": "2762" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2772", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isUseLocalName?: boolean;", - "mainBuggyLine": "2772" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2782", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isSuggestedFirst?: boolean;", - "mainBuggyLine": "2782" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2793", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface LocaleItem", - "mainBuggyLine": "2793" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2802", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "id: string;", - "mainBuggyLine": "2802" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2812", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "suggestionType: SuggestionType;", - "mainBuggyLine": "2812" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2822", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "displayName: string;", - "mainBuggyLine": "2822" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2831", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "localName?: string;", - "mainBuggyLine": "2831" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2842", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface TimeZoneCityItem", - "mainBuggyLine": "2842" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2851", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "zoneId: string;", - "mainBuggyLine": "2851" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2861", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "cityId: string;", - "mainBuggyLine": "2861" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2871", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "cityDisplayName: string;", - "mainBuggyLine": "2871" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2880", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "offset: number;", - "mainBuggyLine": "2880" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2890", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "zoneDisplayName: string;", - "mainBuggyLine": "2890" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2899", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "rawOffset?: number;", - "mainBuggyLine": "2899" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2909", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export class SystemLocaleManager", - "mainBuggyLine": "2909" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2917", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "2917" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2931", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getLanguageInfoArray(languages: Array, options?: SortOptions): Array;", - "mainBuggyLine": "2931" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2945", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getRegionInfoArray(regions: Array, options?: SortOptions): Array;", - "mainBuggyLine": "2945" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2955", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getTimeZoneCityItemArray(): Array;", - "mainBuggyLine": "2955" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2973", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface HolidayInfoItem", - "mainBuggyLine": "2973" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "2989", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "baseName: string;", - "mainBuggyLine": "2989" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "3006", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "year: number;", - "mainBuggyLine": "3006" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "3023", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "month: number;", - "mainBuggyLine": "3023" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "3040", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "day: number;", - "mainBuggyLine": "3040" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "3057", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "localNames?: Array;", - "mainBuggyLine": "3057" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "3075", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface HolidayLocalName", - "mainBuggyLine": "3075" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "3091", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "language: string;", - "mainBuggyLine": "3091" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "3108", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "3108" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "3124", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export class HolidayManager", - "mainBuggyLine": "3124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "3144", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(icsPath: String);", - "mainBuggyLine": "3144" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "3167", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isHoliday(date?: Date): boolean;", - "mainBuggyLine": "3167" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "3192", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getHolidayInfoItemArray(year?: number): Array;", - "mainBuggyLine": "3192" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "3210", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface EntityInfoItem", - "mainBuggyLine": "3210" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "3226", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "begin: number;", - "mainBuggyLine": "3226" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "3243", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "end: number;", - "mainBuggyLine": "3243" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "3260", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type: string;", - "mainBuggyLine": "3260" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "3276", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export class EntityRecognizer", - "mainBuggyLine": "3276" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "3296", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(locale?: string);", - "mainBuggyLine": "3296" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts", - "codeContextStaerLine": "3317", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "findEntityInfo(text: string): Array;", - "mainBuggyLine": "3317" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.inputMethod.d.ts", - "codeContextStaerLine": "1294", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly packageName: string;", - "mainBuggyLine": "1294" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.inputMethod.d.ts", - "codeContextStaerLine": "1304", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly methodId: string;", - "mainBuggyLine": "1304" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.inputMethod.d.ts", - "codeContextStaerLine": "1312", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly name: string;", - "mainBuggyLine": "1312" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.inputMethod.d.ts", - "codeContextStaerLine": "1320", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly id: string;", - "mainBuggyLine": "1320" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.inputMethod.d.ts", - "codeContextStaerLine": "1328", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly label?: string;", - "mainBuggyLine": "1328" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.inputMethod.d.ts", - "codeContextStaerLine": "1345", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly icon?: string;", - "mainBuggyLine": "1345" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.inputMethodEngine.d.ts", - "codeContextStaerLine": "377", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type CommandDataType = number | string | boolean;", - "mainBuggyLine": "377" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.inputMethodEngine.d.ts", - "codeContextStaerLine": "1799", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly inputPattern: number;", - "mainBuggyLine": "1799" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.inputMethodEngine.d.ts", - "codeContextStaerLine": "1807", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly enterKeyType: number;", - "mainBuggyLine": "1807" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.inputMethodEngine.d.ts", - "codeContextStaerLine": "1831", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly keyCode: number;", - "mainBuggyLine": "1831" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.inputMethodEngine.d.ts", - "codeContextStaerLine": "1839", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly keyAction: number;", - "mainBuggyLine": "1839" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.inputMethodEngine.d.ts", - "codeContextStaerLine": "638", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_privateCommand] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'privateCommand', callback: Callback>): void;", - "mainBuggyLine": "638" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.inputMethodEngine.d.ts", - "codeContextStaerLine": "650", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_privateCommand] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'privateCommand', callback?: Callback>): void;", - "mainBuggyLine": "650" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.inputMethodEngine.d.ts", - "codeContextStaerLine": "1773", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_sizeChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'sizeChange', callback: Callback): void;", - "mainBuggyLine": "1773" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.inputMethodEngine.d.ts", - "codeContextStaerLine": "1784", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_sizeChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'sizeChange', callback?: Callback): void;", - "mainBuggyLine": "1784" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.InputMethodExtensionAbility.d.ts", - "codeContextStaerLine": "39", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "context: InputMethodExtensionContext;", - "mainBuggyLine": "39" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.inputMethodList.d.ets", - "codeContextStaerLine": "36", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "defaultSelected?: number;", - "mainBuggyLine": "36" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.inputMethodList.d.ets", - "codeContextStaerLine": "87", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct InputMethodListDialog", - "mainBuggyLine": "87" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.inputMethodList.d.ets", - "codeContextStaerLine": "104", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "patternOptions?: PatternOptions;", - "mainBuggyLine": "104" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.InputMethodSubtype.d.ts", - "codeContextStaerLine": "35", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly label?: string;", - "mainBuggyLine": "35" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.InputMethodSubtype.d.ts", - "codeContextStaerLine": "52", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly name: string;", - "mainBuggyLine": "52" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.InputMethodSubtype.d.ts", - "codeContextStaerLine": "60", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly id: string;", - "mainBuggyLine": "60" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.InputMethodSubtype.d.ts", - "codeContextStaerLine": "68", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly mode?: 'upper' | 'lower';", - "mainBuggyLine": "68" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.InputMethodSubtype.d.ts", - "codeContextStaerLine": "76", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly locale: string;", - "mainBuggyLine": "76" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.InputMethodSubtype.d.ts", - "codeContextStaerLine": "84", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly language: string;", - "mainBuggyLine": "84" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.InputMethodSubtype.d.ts", - "codeContextStaerLine": "92", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly icon?: string;", - "mainBuggyLine": "92" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.InputMethodSubtype.d.ts", - "codeContextStaerLine": "100", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly iconId?: number;", - "mainBuggyLine": "100" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "487", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "language: string;", - "mainBuggyLine": "487" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "519", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "script: string;", - "mainBuggyLine": "519" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "551", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "region: string;", - "mainBuggyLine": "551" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "587", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "baseName: string;", - "mainBuggyLine": "587" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "619", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "caseFirst: string;", - "mainBuggyLine": "619" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "651", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "calendar: string;", - "mainBuggyLine": "651" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "683", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "collation: string;", - "mainBuggyLine": "683" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "715", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "hourCycle: string;", - "mainBuggyLine": "715" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "747", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "numberingSystem: string;", - "mainBuggyLine": "747" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "779", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "numeric: boolean;", - "mainBuggyLine": "779" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "1995", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface NumberOptions", - "mainBuggyLine": "1995" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2027", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "locale?: string;", - "mainBuggyLine": "2027" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2060", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "currency?: string;", - "mainBuggyLine": "2060" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2093", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "currencySign?: string;", - "mainBuggyLine": "2093" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2126", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "currencyDisplay?: string;", - "mainBuggyLine": "2126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2159", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "unit?: string;", - "mainBuggyLine": "2159" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2192", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "unitDisplay?: string;", - "mainBuggyLine": "2192" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2225", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "unitUsage?: string;", - "mainBuggyLine": "2225" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2258", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "signDisplay?: string;", - "mainBuggyLine": "2258" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2291", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "compactDisplay?: string;", - "mainBuggyLine": "2291" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2324", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "notation?: string;", - "mainBuggyLine": "2324" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2357", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "localeMatcher?: string;", - "mainBuggyLine": "2357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2390", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "style?: string;", - "mainBuggyLine": "2390" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2423", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "numberingSystem?: string;", - "mainBuggyLine": "2423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2456", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "useGrouping?: boolean;", - "mainBuggyLine": "2456" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2489", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "minimumIntegerDigits?: number;", - "mainBuggyLine": "2489" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2522", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "minimumFractionDigits?: number;", - "mainBuggyLine": "2522" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2555", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maximumFractionDigits?: number;", - "mainBuggyLine": "2555" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2588", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "minimumSignificantDigits?: number;", - "mainBuggyLine": "2588" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2621", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maximumSignificantDigits?: number;", - "mainBuggyLine": "2621" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2645", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export class NumberFormat", - "mainBuggyLine": "2645" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2667", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "2667" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2699", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(locale: string | Array, options?: NumberOptions);", - "mainBuggyLine": "2699" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2728", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "format(number: number): string;", - "mainBuggyLine": "2728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2754", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "resolvedOptions(): NumberOptions;", - "mainBuggyLine": "2754" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2781", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface CollatorOptions", - "mainBuggyLine": "2781" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2817", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "localeMatcher?: string;", - "mainBuggyLine": "2817" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2854", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "usage?: string;", - "mainBuggyLine": "2854" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2915", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sensitivity?: string;", - "mainBuggyLine": "2915" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2948", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ignorePunctuation?: boolean;", - "mainBuggyLine": "2948" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "2981", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "collation?: string;", - "mainBuggyLine": "2981" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3014", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "numeric?: boolean;", - "mainBuggyLine": "3014" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3051", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "caseFirst?: string;", - "mainBuggyLine": "3051" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3075", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export class Collator", - "mainBuggyLine": "3075" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3097", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "3097" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3128", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(locale: string | Array, options?: CollatorOptions);", - "mainBuggyLine": "3128" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3169", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "compare(first: string, second: string): number;", - "mainBuggyLine": "3169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3198", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "resolvedOptions(): CollatorOptions;", - "mainBuggyLine": "3198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3225", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface PluralRulesOptions", - "mainBuggyLine": "3225" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3261", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "localeMatcher?: string;", - "mainBuggyLine": "3261" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3294", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type?: string;", - "mainBuggyLine": "3294" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3331", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "minimumIntegerDigits?: number;", - "mainBuggyLine": "3331" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3368", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "minimumFractionDigits?: number;", - "mainBuggyLine": "3368" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3409", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maximumFractionDigits?: number;", - "mainBuggyLine": "3409" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3446", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "minimumSignificantDigits?: number;", - "mainBuggyLine": "3446" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3483", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maximumSignificantDigits?: number;", - "mainBuggyLine": "3483" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3507", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export class PluralRules", - "mainBuggyLine": "3507" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3529", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "3529" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3561", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(locale: string | Array, options?: PluralRulesOptions);", - "mainBuggyLine": "3561" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3593", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "select(n: number): string;", - "mainBuggyLine": "3593" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3620", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface RelativeTimeFormatInputOptions", - "mainBuggyLine": "3620" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3656", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "localeMatcher?: string;", - "mainBuggyLine": "3656" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3693", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "numeric?: string;", - "mainBuggyLine": "3693" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3730", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "style?: string;", - "mainBuggyLine": "3730" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3757", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface RelativeTimeFormatResolvedOptions", - "mainBuggyLine": "3757" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3779", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "locale: string;", - "mainBuggyLine": "3779" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3779", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "locale: string;", - "mainBuggyLine": "3779" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3805", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "style: string;", - "mainBuggyLine": "3805" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3805", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "style: string;", - "mainBuggyLine": "3805" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3831", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "numeric: string;", - "mainBuggyLine": "3831" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3831", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "numeric: string;", - "mainBuggyLine": "3831" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3854", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "numberingSystem: string;", - "mainBuggyLine": "3854" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3854", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "numberingSystem: string;", - "mainBuggyLine": "3854" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3881", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export class RelativeTimeFormat", - "mainBuggyLine": "3881" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3903", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "3903" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3935", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(locale: string | Array, options?: RelativeTimeFormatInputOptions);", - "mainBuggyLine": "3935" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "3970", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "format(value: number, unit: string): string;", - "mainBuggyLine": "3970" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "4008", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "formatToParts(value: number, unit: string): Array;", - "mainBuggyLine": "4008" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts", - "codeContextStaerLine": "4037", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "resolvedOptions(): RelativeTimeFormatResolvedOptions;", - "mainBuggyLine": "4037" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.matrix4.d.ts", - "codeContextStaerLine": "770", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "skew(x: number, y: number): Matrix4Transit;", - "mainBuggyLine": "770" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.matrix4.d.ts", - "codeContextStaerLine": "839", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setPolyToPoly(options: PolyToPolyOptions): Matrix4Transit", - "mainBuggyLine": "839" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.matrix4.d.ts", - "codeContextStaerLine": "960", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function copy(): Matrix4Transit;", - "mainBuggyLine": "960" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.matrix4.d.ts", - "codeContextStaerLine": "970", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function invert(): Matrix4Transit;", - "mainBuggyLine": "970" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.matrix4.d.ts", - "codeContextStaerLine": "981", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function combine(options: Matrix4Transit): Matrix4Transit;", - "mainBuggyLine": "981" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.matrix4.d.ts", - "codeContextStaerLine": "992", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function translate(options: TranslateOption): Matrix4Transit;", - "mainBuggyLine": "992" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.matrix4.d.ts", - "codeContextStaerLine": "1003", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function scale(options: ScaleOption): Matrix4Transit;", - "mainBuggyLine": "1003" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.matrix4.d.ts", - "codeContextStaerLine": "1014", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function rotate(options: RotateOption): Matrix4Transit;", - "mainBuggyLine": "1014" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.matrix4.d.ts", - "codeContextStaerLine": "1025", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function transformPoint(options: [number, number]): [number, number];", - "mainBuggyLine": "1025" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.mediaquery.d.ts", - "codeContextStaerLine": "213", - "defectLevel": 2, - "defectType": "API_DOC_INTERFACE_01", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [interface] labels.", - "language": "ts", - "mainBuggyCode": " interface MediaQueryListener", - "mainBuggyLine": "213" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.mediaquery.d.ts", - "codeContextStaerLine": "256", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_change] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'change', callback: Callback): void;", - "mainBuggyLine": "256" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.mediaquery.d.ts", - "codeContextStaerLine": "300", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_change] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'change', callback?: Callback): void;", - "mainBuggyLine": "300" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "27", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare namespace audio", - "mainBuggyLine": "27" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "1154", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "samplingRate: AudioSamplingRate;", - "mainBuggyLine": "1154" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "1160", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "channels: AudioChannel;", - "mainBuggyLine": "1160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "1166", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "sampleFormat: AudioSampleFormat;", - "mainBuggyLine": "1166" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "1172", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "encodingType: AudioEncodingType;", - "mainBuggyLine": "1172" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "1210", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "content?: ContentType;", - "mainBuggyLine": "1210" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "1222", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "usage: StreamUsage;", - "mainBuggyLine": "1222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "1234", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rendererFlags: number;", - "mainBuggyLine": "1234" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "1251", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uid?: number;", - "mainBuggyLine": "1251" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "1258", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rendererInfo?: AudioRendererInfo;", - "mainBuggyLine": "1258" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "1265", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rendererId?: number;", - "mainBuggyLine": "1265" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "1280", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "streamInfo: AudioStreamInfo;", - "mainBuggyLine": "1280" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "1286", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rendererInfo: AudioRendererInfo;", - "mainBuggyLine": "1286" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "1292", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "privacyType?: AudioPrivacyType;", - "mainBuggyLine": "1292" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "1582", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "eventType: InterruptType;", - "mainBuggyLine": "1582" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "1595", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "forceType: InterruptForceType;", - "mainBuggyLine": "1595" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "1608", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "hintType: InterruptHint;", - "mainBuggyLine": "1608" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "2299", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "requestResult: InterruptRequestResultType;", - "mainBuggyLine": "2299" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "2306", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "interruptNode: number;", - "mainBuggyLine": "2306" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3688", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly networkId: string;", - "mainBuggyLine": "3688" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3696", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly groupId: number;", - "mainBuggyLine": "3696" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3704", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly mappingId: number;", - "mainBuggyLine": "3704" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3712", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly groupName: string;", - "mainBuggyLine": "3712" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3720", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly type: ConnectType;", - "mainBuggyLine": "3720" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3752", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly streamId: number;", - "mainBuggyLine": "3752" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3760", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly clientUid: number;", - "mainBuggyLine": "3760" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3767", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly rendererInfo: AudioRendererInfo;", - "mainBuggyLine": "3767" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3775", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly rendererState: AudioState;", - "mainBuggyLine": "3775" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3782", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly deviceDescriptors: AudioDeviceDescriptors;", - "mainBuggyLine": "3782" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3805", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly streamId: number;", - "mainBuggyLine": "3805" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3813", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly clientUid: number;", - "mainBuggyLine": "3813" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3820", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly capturerInfo: AudioCapturerInfo;", - "mainBuggyLine": "3820" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3828", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly capturerState: AudioState;", - "mainBuggyLine": "3828" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3835", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly deviceDescriptors: AudioDeviceDescriptors;", - "mainBuggyLine": "3835" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3842", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly muted?: boolean;", - "mainBuggyLine": "3842" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3870", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly deviceRole: DeviceRole;", - "mainBuggyLine": "3870" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3883", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly deviceType: DeviceType;", - "mainBuggyLine": "3883" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3896", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly id: number;", - "mainBuggyLine": "3896" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3909", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly name: string;", - "mainBuggyLine": "3909" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3922", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly address: string;", - "mainBuggyLine": "3922" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3935", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly sampleRates: Array;", - "mainBuggyLine": "3935" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3948", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly channelCounts: Array;", - "mainBuggyLine": "3948" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3961", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly channelMasks: Array;", - "mainBuggyLine": "3961" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3968", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly networkId: string;", - "mainBuggyLine": "3968" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3968", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly networkId: string;", - "mainBuggyLine": "3968" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3975", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly interruptGroupId: number;", - "mainBuggyLine": "3975" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3975", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly interruptGroupId: number;", - "mainBuggyLine": "3975" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3982", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly volumeGroupId: number;", - "mainBuggyLine": "3982" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3982", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly volumeGroupId: number;", - "mainBuggyLine": "3982" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "3994", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly displayName: string;", - "mainBuggyLine": "3994" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "4007", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly encodingTypes?: Array;", - "mainBuggyLine": "4007" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "4037", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "volumeType: AudioVolumeType;", - "mainBuggyLine": "4037" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "4043", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "volume: number;", - "mainBuggyLine": "4043" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "4049", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "updateUi: boolean;", - "mainBuggyLine": "4049" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "4056", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "volumeGroupId: number;", - "mainBuggyLine": "4056" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "4063", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "networkId: string;", - "mainBuggyLine": "4063" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "4084", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "actionType: InterruptActionType;", - "mainBuggyLine": "4084" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "4092", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type?: InterruptType;", - "mainBuggyLine": "4092" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "4100", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "hint?: InterruptHint;", - "mainBuggyLine": "4100" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "4109", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "activated?: boolean;", - "mainBuggyLine": "4109" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "4127", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "streamUsage: StreamUsage;", - "mainBuggyLine": "4127" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "4135", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "contentType: ContentType;", - "mainBuggyLine": "4135" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "4144", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "pauseWhenDucked: boolean;", - "mainBuggyLine": "4144" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "4159", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "mute: boolean;", - "mainBuggyLine": "4159" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "4173", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: DeviceChangeType;", - "mainBuggyLine": "4173" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "4180", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceDescriptors: AudioDeviceDescriptors;", - "mainBuggyLine": "4180" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "4358", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "type AudioRendererWriteDataCallback = (data: ArrayBuffer) => AudioDataCallbackResult | void;", - "mainBuggyLine": "4358" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "4358", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_06", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [returns] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "type AudioRendererWriteDataCallback = (data: ArrayBuffer) => AudioDataCallbackResult | void;", - "mainBuggyLine": "4358" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "4358", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [1] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "type AudioRendererWriteDataCallback = (data: ArrayBuffer) => AudioDataCallbackResult | void;", - "mainBuggyLine": "4358" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "4358", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type AudioRendererWriteDataCallback = (data: ArrayBuffer) => AudioDataCallbackResult | void;", - "mainBuggyLine": "4358" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "4372", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly state: AudioState;", - "mainBuggyLine": "4372" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "5081", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "SOURCE_TYPE_WAKEUP = 3", - "mainBuggyLine": "5081" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "5090", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "SOURCE_TYPE_VOICE_CALL = 4", - "mainBuggyLine": "5090" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "5119", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "source: SourceType;", - "mainBuggyLine": "5119" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "5125", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "capturerFlags: number;", - "mainBuggyLine": "5125" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "5140", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "streamInfo: AudioStreamInfo;", - "mainBuggyLine": "5140" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "5146", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "capturerInfo: AudioCapturerInfo;", - "mainBuggyLine": "5146" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "5154", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "playbackCaptureConfig?: AudioPlaybackCaptureConfig;", - "mainBuggyLine": "5154" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "5179", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "usages: Array;", - "mainBuggyLine": "5179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "5198", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "filterOptions: CaptureFilterOptions;", - "mainBuggyLine": "5198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "5213", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly state: AudioState;", - "mainBuggyLine": "5213" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "5735", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "function createAsrProcessingController(audioCapturer: AudioCapturer): AsrProcessingController;", - "mainBuggyLine": "5735" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "5014", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_writeData] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'writeData', callback: AudioRendererWriteDataCallback): void;", - "mainBuggyLine": "5014" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.audio.d.ts", - "codeContextStaerLine": "5038", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_writeData] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'writeData', callback?: AudioRendererWriteDataCallback): void;", - "mainBuggyLine": "5038" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avCastPicker.d.ets", - "codeContextStaerLine": "36", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare struct AVCastPicker", - "mainBuggyLine": "36" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avCastPicker.d.ets", - "codeContextStaerLine": "53", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "@Prop\n normalColor?: Color | number | string;", - "mainBuggyLine": "53" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avCastPicker.d.ets", - "codeContextStaerLine": "71", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "@Prop\n activeColor?: Color | number | string;", - "mainBuggyLine": "71" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createAVSession(context: Context, tag: string, type: AVSessionType, callback: AsyncCallback): void;", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "94", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAllSessionDescriptors(callback: AsyncCallback>>): void;", - "mainBuggyLine": "94" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "106", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAllSessionDescriptors(): Promise>>;", - "mainBuggyLine": "106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "121", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getHistoricalSessionDescriptors(maxSize: number, callback: AsyncCallback>>): void;", - "mainBuggyLine": "121" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "136", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getHistoricalSessionDescriptors(maxSize?: number): Promise>>;", - "mainBuggyLine": "136" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "154", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getHistoricalAVQueueInfos(maxSize: number, maxAppSize: number, callback: AsyncCallback>>): void;", - "mainBuggyLine": "154" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "169", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getHistoricalAVQueueInfos(maxSize: number, maxAppSize: number): Promise>>;", - "mainBuggyLine": "169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "186", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createController(sessionId: string, callback: AsyncCallback): void;", - "mainBuggyLine": "186" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "203", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createController(sessionId: string): Promise;", - "mainBuggyLine": "203" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "222", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function castAudio(session: SessionToken | 'all', audioDevices: Array, callback: AsyncCallback): void;", - "mainBuggyLine": "222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "241", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function castAudio(session: SessionToken | 'all', audioDevices: Array): Promise;", - "mainBuggyLine": "241" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "258", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function startAVPlayback(bundleName: string, assetId: string): Promise;", - "mainBuggyLine": "258" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "268", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface SessionToken", - "mainBuggyLine": "268" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "268", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " interface SessionToken", - "mainBuggyLine": "268" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "277", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sessionId: string;", - "mainBuggyLine": "277" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "287", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pid?: number;", - "mainBuggyLine": "287" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "297", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "uid?: number;", - "mainBuggyLine": "297" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "313", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'sessionCreate', callback: (session: AVSessionDescriptor) => void): void;", - "mainBuggyLine": "313" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "328", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'sessionDestroy', callback: (session: AVSessionDescriptor) => void): void;", - "mainBuggyLine": "328" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "343", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'topSessionChange', callback: (session: AVSessionDescriptor) => void): void;", - "mainBuggyLine": "343" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "358", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'sessionCreate', callback?: (session: AVSessionDescriptor) => void): void;", - "mainBuggyLine": "358" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "373", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'sessionDestroy', callback?: (session: AVSessionDescriptor) => void): void;", - "mainBuggyLine": "373" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "388", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void;", - "mainBuggyLine": "388" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "402", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'sessionServiceDie', callback: () => void): void;", - "mainBuggyLine": "402" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "402", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function on(type: 'sessionServiceDie', callback: () => void): void;", - "mainBuggyLine": "402" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "416", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'sessionServiceDie', callback?: () => void): void;", - "mainBuggyLine": "416" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "416", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function off(type: 'sessionServiceDie', callback?: () => void): void;", - "mainBuggyLine": "416" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "432", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function sendSystemAVKeyEvent(event: KeyEvent, callback: AsyncCallback): void;", - "mainBuggyLine": "432" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "448", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function sendSystemAVKeyEvent(event: KeyEvent): Promise;", - "mainBuggyLine": "448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "465", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function sendSystemControlCommand(command: AVControlCommand, callback: AsyncCallback): void;", - "mainBuggyLine": "465" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "482", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function sendSystemControlCommand(command: AVControlCommand): Promise;", - "mainBuggyLine": "482" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "519", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_CAST_PLUS_MIRROR = 1", - "mainBuggyLine": "519" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "527", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_CAST_PLUS_STREAM = 2", - "mainBuggyLine": "527" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "535", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_DLNA = 4", - "mainBuggyLine": "535" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "545", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function startCastDeviceDiscovery(callback: AsyncCallback): void;", - "mainBuggyLine": "545" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "557", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function startCastDeviceDiscovery(filter: number, callback: AsyncCallback): void;", - "mainBuggyLine": "557" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "582", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function startCastDeviceDiscovery(filter?: number, drmSchemes?: Array): Promise;", - "mainBuggyLine": "582" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "591", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function stopCastDeviceDiscovery(callback: AsyncCallback): void;", - "mainBuggyLine": "591" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "600", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function stopCastDeviceDiscovery(): Promise;", - "mainBuggyLine": "600" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "612", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setDiscoverable(enable: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "612" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "624", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setDiscoverable(enable: boolean): Promise;", - "mainBuggyLine": "624" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "637", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'deviceAvailable', callback: (device: OutputDeviceInfo) => void): void;", - "mainBuggyLine": "637" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "637", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function on(type: 'deviceAvailable', callback: (device: OutputDeviceInfo) => void): void;", - "mainBuggyLine": "637" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "650", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'deviceAvailable', callback?: (device: OutputDeviceInfo) => void): void;", - "mainBuggyLine": "650" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "650", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function off(type: 'deviceAvailable', callback?: (device: OutputDeviceInfo) => void): void;", - "mainBuggyLine": "650" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "663", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'deviceOffline', callback: (deviceId: string) => void): void;", - "mainBuggyLine": "663" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "663", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function on(type: 'deviceOffline', callback: (deviceId: string) => void): void;", - "mainBuggyLine": "663" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "678", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'deviceOffline', callback?: (deviceId: string) => void): void;", - "mainBuggyLine": "678" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "695", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAVCastController(sessionId: string, callback: AsyncCallback): void;", - "mainBuggyLine": "695" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "712", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAVCastController(sessionId: string): Promise;", - "mainBuggyLine": "712" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "729", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function startCasting(session: SessionToken, device: OutputDeviceInfo, callback: AsyncCallback): void;", - "mainBuggyLine": "729" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "746", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function startCasting(session: SessionToken, device: OutputDeviceInfo): Promise;", - "mainBuggyLine": "746" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "759", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function stopCasting(session: SessionToken, callback: AsyncCallback): void;", - "mainBuggyLine": "759" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "772", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function stopCasting(session: SessionToken): Promise;", - "mainBuggyLine": "772" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "790", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type AVSessionType = 'audio' | 'video' | 'voice_call' | 'video_call';", - "mainBuggyLine": "790" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "817", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly sessionId: string;", - "mainBuggyLine": "817" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "830", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly sessionType: AVSessionType;", - "mainBuggyLine": "830" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "844", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setAVMetadata(data: AVMetadata, callback: AsyncCallback): void;", - "mainBuggyLine": "844" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "884", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setCallMetadata(data: CallMetadata, callback: AsyncCallback): void;", - "mainBuggyLine": "884" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "897", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setCallMetadata(data: CallMetadata): Promise;", - "mainBuggyLine": "897" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "910", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setAVPlaybackState(state: AVPlaybackState, callback: AsyncCallback): void;", - "mainBuggyLine": "910" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "948", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setAVCallState(state: AVCallState, callback: AsyncCallback): void;", - "mainBuggyLine": "948" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "961", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setAVCallState(state: AVCallState): Promise;", - "mainBuggyLine": "961" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "974", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setLaunchAbility(ability: WantAgent, callback: AsyncCallback): void;", - "mainBuggyLine": "974" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "987", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setLaunchAbility(ability: WantAgent): Promise;", - "mainBuggyLine": "987" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1001", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dispatchSessionEvent(event: string, args: {[key: string]: Object}, callback: AsyncCallback): void;", - "mainBuggyLine": "1001" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1015", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dispatchSessionEvent(event: string, args: {[key: string]: Object}): Promise;", - "mainBuggyLine": "1015" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1028", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setAVQueueItems(items: Array, callback: AsyncCallback): void;", - "mainBuggyLine": "1028" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1041", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setAVQueueItems(items: Array): Promise;", - "mainBuggyLine": "1041" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1054", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setAVQueueTitle(title: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1054" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1067", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setAVQueueTitle(title: string): Promise;", - "mainBuggyLine": "1067" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1080", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setExtras(extras: {[key: string]: Object}, callback: AsyncCallback): void;", - "mainBuggyLine": "1080" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1093", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setExtras(extras: {[key: string]: Object}): Promise;", - "mainBuggyLine": "1093" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1103", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getController(callback: AsyncCallback): void;", - "mainBuggyLine": "1103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1113", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getController(): Promise;", - "mainBuggyLine": "1113" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAVCastController(callback: AsyncCallback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1155", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getOutputDevice(callback: AsyncCallback): void;", - "mainBuggyLine": "1155" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1184", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getOutputDeviceSync(): OutputDeviceInfo;", - "mainBuggyLine": "1184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1194", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAllCastDisplays(): Promise>;", - "mainBuggyLine": "1194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1212", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'play', callback: () => void): void;", - "mainBuggyLine": "1212" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1230", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'pause', callback: () => void): void;", - "mainBuggyLine": "1230" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1248", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'stop', callback: () => void): void;", - "mainBuggyLine": "1248" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1266", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'playNext', callback: () => void): void;", - "mainBuggyLine": "1266" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1284", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'playPrevious', callback: () => void): void;", - "mainBuggyLine": "1284" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1302", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'fastForward', callback: (time ?: number) => void): void;", - "mainBuggyLine": "1302" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1320", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'rewind', callback: (time ?: number) => void): void;", - "mainBuggyLine": "1320" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1334", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'play', callback?: () => void): void;", - "mainBuggyLine": "1334" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1348", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'pause', callback?: () => void): void;", - "mainBuggyLine": "1348" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1362", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'stop', callback?: () => void): void;", - "mainBuggyLine": "1362" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1376", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'playNext', callback?: () => void): void;", - "mainBuggyLine": "1376" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1390", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'playPrevious', callback?: () => void): void;", - "mainBuggyLine": "1390" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1404", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'fastForward', callback?: () => void): void;", - "mainBuggyLine": "1404" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1418", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'rewind', callback?: () => void): void;", - "mainBuggyLine": "1418" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1436", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'playFromAssetId', callback: (assetId: number) => void): void;", - "mainBuggyLine": "1436" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1449", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'playFromAssetId', callback?: (assetId: number) => void): void;", - "mainBuggyLine": "1449" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1462", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'seek', callback: (time: number) => void): void;", - "mainBuggyLine": "1462" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1475", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'seek', callback?: (time: number) => void): void;", - "mainBuggyLine": "1475" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1488", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'setSpeed', callback: (speed: number) => void): void;", - "mainBuggyLine": "1488" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1501", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'setSpeed', callback?: (speed: number) => void): void;", - "mainBuggyLine": "1501" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1514", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'setLoopMode', callback: (mode: LoopMode) => void): void;", - "mainBuggyLine": "1514" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1527", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'setLoopMode', callback?: (mode: LoopMode) => void): void;", - "mainBuggyLine": "1527" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1541", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'toggleFavorite', callback: (assetId: string) => void): void;", - "mainBuggyLine": "1541" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1555", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'toggleFavorite', callback?: (assetId: string) => void): void;", - "mainBuggyLine": "1555" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1568", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'handleKeyEvent', callback: (event: KeyEvent) => void): void;", - "mainBuggyLine": "1568" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1581", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'handleKeyEvent', callback?: (event: KeyEvent) => void): void;", - "mainBuggyLine": "1581" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1649", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'commonCommand', callback: (command: string, args: {[key: string]: Object}) => void): void;", - "mainBuggyLine": "1649" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1663", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'commonCommand', callback?: (command: string, args: {[key: string]: Object}) => void): void;", - "mainBuggyLine": "1663" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1677", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'skipToQueueItem', callback: (itemId: number) => void): void;", - "mainBuggyLine": "1677" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1691", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'skipToQueueItem', callback?: (itemId: number) => void): void;", - "mainBuggyLine": "1691" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1706", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'answer', callback: Callback): void;", - "mainBuggyLine": "1706" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1719", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'answer', callback?: Callback): void;", - "mainBuggyLine": "1719" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1734", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'hangUp', callback: Callback): void;", - "mainBuggyLine": "1734" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1747", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'hangUp', callback?: Callback): void;", - "mainBuggyLine": "1747" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1762", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'toggleCallMute', callback: Callback): void;", - "mainBuggyLine": "1762" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1774", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'toggleCallMute', callback?: Callback): void;", - "mainBuggyLine": "1774" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1787", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'castDisplayChange', callback: Callback): void;", - "mainBuggyLine": "1787" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1800", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'castDisplayChange', callback?: Callback): void;", - "mainBuggyLine": "1800" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1809", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stopCasting(callback: AsyncCallback): void;", - "mainBuggyLine": "1809" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1836", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "activate(callback: AsyncCallback): void;", - "mainBuggyLine": "1836" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1865", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deactivate(callback: AsyncCallback): void;", - "mainBuggyLine": "1865" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1894", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "destroy(callback: AsyncCallback): void;", - "mainBuggyLine": "1894" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1927", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type AVCastControlCommandType = 'play' | 'pause' | 'stop' | 'playNext' | 'playPrevious' | 'fastForward' | 'rewind' |\n 'seek' | 'setVolume' | 'setSpeed' | 'setLoopMode' | 'toggleFavorite' | 'toggleMute';", - "mainBuggyLine": "1927" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1955", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "command: AVCastControlCommandType;", - "mainBuggyLine": "1955" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1980", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "parameter?: media.PlaybackSpeed | number | string | LoopMode;", - "mainBuggyLine": "1980" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2008", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setDisplaySurface(surfaceId: string, callback: AsyncCallback): void;", - "mainBuggyLine": "2008" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2021", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setDisplaySurface(surfaceId: string): Promise;", - "mainBuggyLine": "2021" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2030", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAVPlaybackState(callback: AsyncCallback): void;", - "mainBuggyLine": "2030" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2061", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sendControlCommand(command: AVCastControlCommand, callback: AsyncCallback): void;", - "mainBuggyLine": "2061" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2101", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "start(item: AVQueueItem, callback: AsyncCallback): void;", - "mainBuggyLine": "2101" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2139", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "prepare(item: AVQueueItem, callback: AsyncCallback): void;", - "mainBuggyLine": "2139" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2173", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getCurrentItem(callback: AsyncCallback): void;", - "mainBuggyLine": "2173" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2199", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getValidCommands(callback: AsyncCallback>): void;", - "mainBuggyLine": "2199" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2208", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getValidCommands(): Promise>;", - "mainBuggyLine": "2208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2221", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "processMediaKeyResponse(assetId: string, response: Uint8Array): Promise;", - "mainBuggyLine": "2221" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2230", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(callback: AsyncCallback): void;", - "mainBuggyLine": "2230" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2452", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'requestPlay', callback: Callback): void;", - "mainBuggyLine": "2452" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2464", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'requestPlay', callback?: Callback): void;", - "mainBuggyLine": "2464" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2477", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'endOfStream', callback: Callback): void;", - "mainBuggyLine": "2477" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2489", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'endOfStream', callback?: Callback): void;", - "mainBuggyLine": "2489" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2547", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'validCommandChange', callback: Callback>);", - "mainBuggyLine": "2547" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2561", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'validCommandChange', callback?: Callback>);", - "mainBuggyLine": "2561" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2574", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'videoSizeChange', callback: (width: number, height: number) => void): void;", - "mainBuggyLine": "2574" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2586", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'videoSizeChange'): void;", - "mainBuggyLine": "2586" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2693", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "type KeyRequestCallback = (assetId: string, requestData: Uint8Array) => void;", - "mainBuggyLine": "2693" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2693", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "type KeyRequestCallback = (assetId: string, requestData: Uint8Array) => void;", - "mainBuggyLine": "2693" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2693", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [2] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "type KeyRequestCallback = (assetId: string, requestData: Uint8Array) => void;", - "mainBuggyLine": "2693" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2693", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type KeyRequestCallback = (assetId: string, requestData: Uint8Array) => void;", - "mainBuggyLine": "2693" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2702", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum CastDisplayState", - "mainBuggyLine": "2702" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2709", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STATE_OFF = 1", - "mainBuggyLine": "2709" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2717", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STATE_ON", - "mainBuggyLine": "2717" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2726", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface CastDisplayInfo", - "mainBuggyLine": "2726" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2734", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "id: number;", - "mainBuggyLine": "2734" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2734", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "id: number;", - "mainBuggyLine": "2734" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2742", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "2742" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2742", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "2742" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2750", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "state: CastDisplayState;", - "mainBuggyLine": "2750" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2750", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "state: CastDisplayState;", - "mainBuggyLine": "2750" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2758", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "width: number;", - "mainBuggyLine": "2758" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2758", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "width: number;", - "mainBuggyLine": "2758" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2766", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "height: number;", - "mainBuggyLine": "2766" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2766", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "height: number;", - "mainBuggyLine": "2766" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2829", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum DisplayTag", - "mainBuggyLine": "2829" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2835", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TAG_AUDIO_VIVID = 1", - "mainBuggyLine": "2835" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2845", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AVQueueInfo", - "mainBuggyLine": "2845" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2853", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bundleName: string;", - "mainBuggyLine": "2853" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2862", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "avQueueName: string;", - "mainBuggyLine": "2862" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2871", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "avQueueId: string;", - "mainBuggyLine": "2871" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2879", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "avQueueImage: image.PixelMap | string;", - "mainBuggyLine": "2879" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2879", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "avQueueImage: image.PixelMap | string;", - "mainBuggyLine": "2879" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2889", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "lastPlayedTime?: number;", - "mainBuggyLine": "2889" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2972", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "avQueueName?: string;", - "mainBuggyLine": "2972" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2980", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "avQueueId?: string;", - "mainBuggyLine": "2980" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2987", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "avQueueImage?: image.PixelMap | string;", - "mainBuggyLine": "2987" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2987", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "avQueueImage?: image.PixelMap | string;", - "mainBuggyLine": "2987" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3025", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "composer?: string;", - "mainBuggyLine": "3025" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3055", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "mediaImage?: image.PixelMap | string;", - "mainBuggyLine": "3055" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3063", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "publishDate?: Date;", - "mainBuggyLine": "3063" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3101", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "lyric?: string;", - "mainBuggyLine": "3101" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3160", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "drmSchemes?: Array;", - "mainBuggyLine": "3160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3169", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "skipIntervals?: SkipIntervals;", - "mainBuggyLine": "3169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3177", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "displayTags?: number;", - "mainBuggyLine": "3177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3266", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "mediaImage?: image.PixelMap | string;", - "mainBuggyLine": "3266" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3272", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "extras?: {[key: string]: Object};", - "mainBuggyLine": "3272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3272", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "extras?: {[key: string]: Object};", - "mainBuggyLine": "3272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3405", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fdSrc?: media.AVFileDescriptor;", - "mainBuggyLine": "3405" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3413", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dataSrc?: media.AVDataSrcDescriptor;", - "mainBuggyLine": "3413" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3421", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "drmScheme?: string;", - "mainBuggyLine": "3421" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3539", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "description?: AVMediaDescription;", - "mainBuggyLine": "3539" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3569", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "state?: PlaybackState;", - "mainBuggyLine": "3569" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3597", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "position?: PlaybackPosition;", - "mainBuggyLine": "3597" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3625", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "loopMode?: LoopMode;", - "mainBuggyLine": "3625" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3708", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "duration?: number;", - "mainBuggyLine": "3708" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3751", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "extras?: {[key: string]: Object};", - "mainBuggyLine": "3751" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3805", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface CallMetadata", - "mainBuggyLine": "3805" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3812", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "name?: string;", - "mainBuggyLine": "3812" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3820", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "phoneNumber?: string;", - "mainBuggyLine": "3820" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3828", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "avatar?: image.PixelMap;", - "mainBuggyLine": "3828" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3837", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AVCallState", - "mainBuggyLine": "3837" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3844", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "state: CallState;", - "mainBuggyLine": "3844" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3852", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "muted: boolean;", - "mainBuggyLine": "3852" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3861", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum CallState", - "mainBuggyLine": "3861" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3867", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_STATE_IDLE = 0", - "mainBuggyLine": "3867" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3874", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_STATE_INCOMING = 1", - "mainBuggyLine": "3874" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3881", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_STATE_ACTIVE = 2", - "mainBuggyLine": "3881" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3888", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_STATE_DIALING = 3", - "mainBuggyLine": "3888" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3895", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_STATE_WAITING = 4", - "mainBuggyLine": "3895" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3902", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_STATE_HOLDING = 5", - "mainBuggyLine": "3902" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "3909", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_STATE_DISCONNECTING = 6", - "mainBuggyLine": "3909" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4048", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "castCategory: AVCastCategory;", - "mainBuggyLine": "4048" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4062", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "4062" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4077", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceName: string;", - "mainBuggyLine": "4077" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4090", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceType: DeviceType;", - "mainBuggyLine": "4090" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4098", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ipAddress?: string;", - "mainBuggyLine": "4098" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4098", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ipAddress?: string;", - "mainBuggyLine": "4098" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4106", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "providerId?: number;", - "mainBuggyLine": "4106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4106", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "providerId?: number;", - "mainBuggyLine": "4106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4129", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "supportedDrmCapabilities?: Array;", - "mainBuggyLine": "4129" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4140", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "authenticationStatus?: number;", - "mainBuggyLine": "4140" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4168", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "devices: Array;", - "mainBuggyLine": "4168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4257", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum SkipIntervals", - "mainBuggyLine": "4257" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4263", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SECONDS_10 = 10", - "mainBuggyLine": "4263" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4269", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SECONDS_15 = 15", - "mainBuggyLine": "4269" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4275", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SECONDS_30 = 30", - "mainBuggyLine": "4275" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4458", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AVSessionDescriptor", - "mainBuggyLine": "4458" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4466", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sessionId: string;", - "mainBuggyLine": "4466" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4474", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type: AVSessionType;", - "mainBuggyLine": "4474" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4474", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: AVSessionType;", - "mainBuggyLine": "4474" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4483", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sessionTag: string;", - "mainBuggyLine": "4483" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4491", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "elementName: ElementName;", - "mainBuggyLine": "4491" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4491", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "elementName: ElementName;", - "mainBuggyLine": "4491" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4500", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isActive: boolean;", - "mainBuggyLine": "4500" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4509", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isTopSession: boolean;", - "mainBuggyLine": "4509" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4518", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "outputDevice: OutputDeviceInfo;", - "mainBuggyLine": "4518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4518", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "outputDevice: OutputDeviceInfo;", - "mainBuggyLine": "4518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4527", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AVSessionController", - "mainBuggyLine": "4527" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4533", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly sessionId: string;", - "mainBuggyLine": "4533" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4533", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly sessionId: string;", - "mainBuggyLine": "4533" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4544", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAVPlaybackState(callback: AsyncCallback): void;", - "mainBuggyLine": "4544" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4555", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAVPlaybackState(): Promise;", - "mainBuggyLine": "4555" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4566", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAVPlaybackStateSync(): AVPlaybackState;", - "mainBuggyLine": "4566" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4577", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAVMetadata(callback: AsyncCallback): void;", - "mainBuggyLine": "4577" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4588", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAVMetadata(): Promise;", - "mainBuggyLine": "4588" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4599", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAVMetadataSync(): AVMetadata;", - "mainBuggyLine": "4599" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4610", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAVCallState(callback: AsyncCallback): void;", - "mainBuggyLine": "4610" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4621", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAVCallState(): Promise;", - "mainBuggyLine": "4621" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4632", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getCallMetadata(callback: AsyncCallback): void;", - "mainBuggyLine": "4632" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4643", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getCallMetadata(): Promise;", - "mainBuggyLine": "4643" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4654", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAVQueueTitle(callback: AsyncCallback): void;", - "mainBuggyLine": "4654" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4665", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAVQueueTitle(): Promise;", - "mainBuggyLine": "4665" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4676", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAVQueueTitleSync(): string;", - "mainBuggyLine": "4676" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4687", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAVQueueItems(callback: AsyncCallback>): void;", - "mainBuggyLine": "4687" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4698", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAVQueueItems(): Promise>;", - "mainBuggyLine": "4698" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4709", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAVQueueItemsSync(): Array;", - "mainBuggyLine": "4709" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4723", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "skipToQueueItem(itemId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "4723" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4737", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "skipToQueueItem(itemId: number): Promise;", - "mainBuggyLine": "4737" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4747", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getOutputDevice(callback: AsyncCallback): void;", - "mainBuggyLine": "4747" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4757", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getOutputDevice(): Promise;", - "mainBuggyLine": "4757" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4767", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getOutputDeviceSync(): OutputDeviceInfo;", - "mainBuggyLine": "4767" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4783", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sendAVKeyEvent(event: KeyEvent, callback: AsyncCallback): void;", - "mainBuggyLine": "4783" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4799", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sendAVKeyEvent(event: KeyEvent): Promise;", - "mainBuggyLine": "4799" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4810", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getLaunchAbility(callback: AsyncCallback): void;", - "mainBuggyLine": "4810" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4821", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getLaunchAbility(): Promise;", - "mainBuggyLine": "4821" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4832", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getRealPlaybackPositionSync(): number;", - "mainBuggyLine": "4832" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4843", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isActive(callback: AsyncCallback): void;", - "mainBuggyLine": "4843" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4854", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isActive(): Promise;", - "mainBuggyLine": "4854" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4865", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isActiveSync(): boolean;", - "mainBuggyLine": "4865" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4875", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "destroy(callback: AsyncCallback): void;", - "mainBuggyLine": "4875" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4885", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "destroy(): Promise;", - "mainBuggyLine": "4885" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4896", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getValidCommands(callback: AsyncCallback>): void;", - "mainBuggyLine": "4896" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4907", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getValidCommands(): Promise>;", - "mainBuggyLine": "4907" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4918", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getValidCommandsSync(): Array;", - "mainBuggyLine": "4918" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4935", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sendControlCommand(command: AVControlCommand, callback: AsyncCallback): void;", - "mainBuggyLine": "4935" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4952", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sendControlCommand(command: AVControlCommand): Promise;", - "mainBuggyLine": "4952" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4970", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sendCommonCommand(command: string, args: {[key: string]: Object}, callback: AsyncCallback): void;", - "mainBuggyLine": "4970" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "4988", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sendCommonCommand(command: string, args: {[key: string]: Object}): Promise;", - "mainBuggyLine": "4988" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5003", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getExtras(callback: AsyncCallback<{[key: string]: Object}>): void;", - "mainBuggyLine": "5003" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5018", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getExtras(): Promise<{[key: string]: Object}>;", - "mainBuggyLine": "5018" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5034", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'metadataChange', filter: Array | 'all', callback: (data: AVMetadata) => void);", - "mainBuggyLine": "5034" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5049", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'metadataChange', callback?: (data: AVMetadata) => void);", - "mainBuggyLine": "5049" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5064", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'playbackStateChange', filter: Array | 'all', callback: (state: AVPlaybackState) => void);", - "mainBuggyLine": "5064" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5078", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'playbackStateChange', callback?: (state: AVPlaybackState) => void);", - "mainBuggyLine": "5078" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5094", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'callMetadataChange', filter: Array | 'all', callback: Callback): void;", - "mainBuggyLine": "5094" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5109", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'callMetadataChange', callback?: Callback): void;", - "mainBuggyLine": "5109" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5124", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'callStateChange', filter: Array | 'all', callback: Callback): void;", - "mainBuggyLine": "5124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5138", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'callStateChange', callback?: Callback): void;", - "mainBuggyLine": "5138" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5151", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'sessionDestroy', callback: () => void);", - "mainBuggyLine": "5151" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5164", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'sessionDestroy', callback?: () => void);", - "mainBuggyLine": "5164" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5178", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'activeStateChange', callback: (isActive: boolean) => void);", - "mainBuggyLine": "5178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5192", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'activeStateChange', callback?: (isActive: boolean) => void);", - "mainBuggyLine": "5192" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5206", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'validCommandChange', callback: (commands: Array) => void);", - "mainBuggyLine": "5206" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5220", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'validCommandChange', callback?: (commands: Array) => void);", - "mainBuggyLine": "5220" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5234", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'outputDeviceChange', callback: (state: ConnectionState, device: OutputDeviceInfo) => void): void;", - "mainBuggyLine": "5234" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5248", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'outputDeviceChange', callback?: (state: ConnectionState, device: OutputDeviceInfo) => void): void;", - "mainBuggyLine": "5248" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5262", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'sessionEvent', callback: (sessionEvent: string, args: {[key: string]: Object}) => void): void;", - "mainBuggyLine": "5262" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5276", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'sessionEvent', callback?: (sessionEvent: string, args: {[key: string]: Object}) => void): void;", - "mainBuggyLine": "5276" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5290", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'queueItemsChange', callback: (items: Array) => void): void;", - "mainBuggyLine": "5290" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5304", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'queueItemsChange', callback?: (items: Array) => void): void;", - "mainBuggyLine": "5304" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5318", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'queueTitleChange', callback: (title: string) => void): void;", - "mainBuggyLine": "5318" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5332", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'queueTitleChange', callback?: (title: string) => void): void;", - "mainBuggyLine": "5332" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5346", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'extrasChange', callback: (extras: {[key: string]: Object}) => void): void;", - "mainBuggyLine": "5346" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5360", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'extrasChange', callback?: (extras: {[key: string]: Object}) => void): void;", - "mainBuggyLine": "5360" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5373", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type AVControlCommandType = 'play' | 'pause' | 'stop' | 'playNext' | 'playPrevious' | 'fastForward' | 'rewind' |\n 'seek' | 'setSpeed' | 'setLoopMode' | 'toggleFavorite' | 'playFromAssetId' | 'answer' | 'hangUp' | 'toggleCallMute';", - "mainBuggyLine": "5373" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5373", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type AVControlCommandType = 'play' | 'pause' | 'stop' | 'playNext' | 'playPrevious' | 'fastForward' | 'rewind' |\n 'seek' | 'setSpeed' | 'setLoopMode' | 'toggleFavorite' | 'playFromAssetId' | 'answer' | 'hangUp' | 'toggleCallMute';", - "mainBuggyLine": "5373" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5382", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AVControlCommand", - "mainBuggyLine": "5382" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5388", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "command: AVControlCommandType;", - "mainBuggyLine": "5388" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5388", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "command: AVControlCommandType;", - "mainBuggyLine": "5388" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5400", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "parameter?: LoopMode | string | number;", - "mainBuggyLine": "5400" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "5400", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "parameter?: LoopMode | string | number;", - "mainBuggyLine": "5400" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1608", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_outputDeviceChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'outputDeviceChange', callback: (state: ConnectionState, device: OutputDeviceInfo) => void): void;", - "mainBuggyLine": "1608" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1635", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_outputDeviceChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'outputDeviceChange', callback?: (state: ConnectionState, device: OutputDeviceInfo) => void): void;", - "mainBuggyLine": "1635" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1787", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_castDisplayChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'castDisplayChange', callback: Callback): void;", - "mainBuggyLine": "1787" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "1800", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_castDisplayChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'castDisplayChange', callback?: Callback): void;", - "mainBuggyLine": "1800" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2274", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_playbackStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'playbackStateChange', filter: Array | 'all', callback: (state: AVPlaybackState) => void): void;", - "mainBuggyLine": "2274" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2299", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_playbackStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'playbackStateChange', callback?: (state: AVPlaybackState) => void): void;", - "mainBuggyLine": "2299" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2322", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_mediaItemChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'mediaItemChange', callback: Callback): void;", - "mainBuggyLine": "2322" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2343", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_mediaItemChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'mediaItemChange'): void;", - "mainBuggyLine": "2343" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2368", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_playNext] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'playNext', callback: Callback): void;", - "mainBuggyLine": "2368" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2391", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_playNext] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'playNext'): void;", - "mainBuggyLine": "2391" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2416", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_playPrevious] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'playPrevious', callback: Callback): void;", - "mainBuggyLine": "2416" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2439", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_playPrevious] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'playPrevious'): void;", - "mainBuggyLine": "2439" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2512", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_seekDone] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'seekDone', callback: Callback): void;", - "mainBuggyLine": "2512" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2533", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_seekDone] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'seekDone'): void;", - "mainBuggyLine": "2533" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2621", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "2621" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2654", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'error'): void;", - "mainBuggyLine": "2654" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2667", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_keyRequest] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'keyRequest', callback: KeyRequestCallback): void;", - "mainBuggyLine": "2667" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2680", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_keyRequest] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'keyRequest', callback?: KeyRequestCallback): void;", - "mainBuggyLine": "2680" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2343", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_03", - "description": "API check error of [wrong parameter]: The callback parameter of off function should be optional.", - "language": "ts", - "mainBuggyCode": "off(type: 'mediaItemChange'): void;", - "mainBuggyLine": "2343" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2391", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_03", - "description": "API check error of [wrong parameter]: The callback parameter of off function should be optional.", - "language": "ts", - "mainBuggyCode": "off(type: 'playNext'): void;", - "mainBuggyLine": "2391" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2439", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_03", - "description": "API check error of [wrong parameter]: The callback parameter of off function should be optional.", - "language": "ts", - "mainBuggyCode": "off(type: 'playPrevious'): void;", - "mainBuggyLine": "2439" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2533", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_03", - "description": "API check error of [wrong parameter]: The callback parameter of off function should be optional.", - "language": "ts", - "mainBuggyCode": "off(type: 'seekDone'): void;", - "mainBuggyLine": "2533" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.avsession.d.ts", - "codeContextStaerLine": "2654", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_03", - "description": "API check error of [wrong parameter]: The callback parameter of off function should be optional.", - "language": "ts", - "mainBuggyCode": "off(type: 'error'): void;", - "mainBuggyLine": "2654" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avVolumePanel.d.ets", - "codeContextStaerLine": "36", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "position?: Position;", - "mainBuggyLine": "36" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avVolumePanel.d.ets", - "codeContextStaerLine": "46", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare struct AVVolumePanel", - "mainBuggyLine": "46" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "49", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getCameraManager(context: Context): CameraManager;", - "mainBuggyLine": "49" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "58", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum CameraStatus", - "mainBuggyLine": "58" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "65", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAMERA_STATUS_APPEAR = 0", - "mainBuggyLine": "65" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "73", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAMERA_STATUS_DISAPPEAR = 1", - "mainBuggyLine": "73" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "81", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAMERA_STATUS_AVAILABLE = 2", - "mainBuggyLine": "81" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "89", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAMERA_STATUS_UNAVAILABLE = 3", - "mainBuggyLine": "89" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "99", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Profile", - "mainBuggyLine": "99" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "108", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly format: CameraFormat;", - "mainBuggyLine": "108" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "118", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly size: Size;", - "mainBuggyLine": "118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "128", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface FrameRateRange", - "mainBuggyLine": "128" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "137", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly min: number;", - "mainBuggyLine": "137" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "147", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly max: number;", - "mainBuggyLine": "147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "157", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface VideoProfile", - "mainBuggyLine": "157" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "157", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface VideoProfile", - "mainBuggyLine": "157" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "166", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly frameRateRange: FrameRateRange;", - "mainBuggyLine": "166" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "176", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface CameraOutputCapability", - "mainBuggyLine": "176" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "185", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly previewProfiles: Array;", - "mainBuggyLine": "185" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "195", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly photoProfiles: Array;", - "mainBuggyLine": "195" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "205", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly videoProfiles: Array;", - "mainBuggyLine": "205" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "215", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly supportedMetadataObjectTypes: Array;", - "mainBuggyLine": "215" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "225", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum CameraErrorCode", - "mainBuggyLine": "225" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "232", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INVALID_ARGUMENT = 7400101", - "mainBuggyLine": "232" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "240", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OPERATION_NOT_ALLOWED = 7400102", - "mainBuggyLine": "240" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "248", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SESSION_NOT_CONFIG = 7400103", - "mainBuggyLine": "248" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "256", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SESSION_NOT_RUNNING = 7400104", - "mainBuggyLine": "256" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "264", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SESSION_CONFIG_LOCKED = 7400105", - "mainBuggyLine": "264" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "272", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_SETTING_LOCKED = 7400106", - "mainBuggyLine": "272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "280", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CONFLICT_CAMERA = 7400107", - "mainBuggyLine": "280" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "288", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_DISABLED = 7400108", - "mainBuggyLine": "288" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "296", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_PREEMPTED = 7400109", - "mainBuggyLine": "296" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "304", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "UNRESOLVED_CONFLICTS_WITH_CURRENT_CONFIGURATIONS = 7400110", - "mainBuggyLine": "304" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "312", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SERVICE_FATAL_ERROR = 7400201", - "mainBuggyLine": "312" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "323", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum RestoreParamType", - "mainBuggyLine": "323" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "331", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NO_NEED_RESTORE_PARAM = 0", - "mainBuggyLine": "331" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "340", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PRESISTENT_DEFAULT_PARAM = 1", - "mainBuggyLine": "340" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "349", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TRANSIENT_ACTIVE_PARAM = 2", - "mainBuggyLine": "349" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "360", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface SettingParam", - "mainBuggyLine": "360" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "369", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "skinSmoothLevel: number;", - "mainBuggyLine": "369" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "379", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "faceSlender: number;", - "mainBuggyLine": "379" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "389", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "skinTone: number;", - "mainBuggyLine": "389" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "400", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface PrelaunchConfig", - "mainBuggyLine": "400" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "409", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "cameraDevice: CameraDevice;", - "mainBuggyLine": "409" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "419", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "restoreParamType?: RestoreParamType;", - "mainBuggyLine": "419" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "429", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "activeTime?: number;", - "mainBuggyLine": "429" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "439", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "settingParam?: SettingParam;", - "mainBuggyLine": "439" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "449", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface CameraManager", - "mainBuggyLine": "449" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "457", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSupportedCameras(): Array;", - "mainBuggyLine": "457" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "469", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSupportedOutputCapability(camera: CameraDevice): CameraOutputCapability;", - "mainBuggyLine": "469" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "479", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSupportedSceneModes(camera: CameraDevice): Array;", - "mainBuggyLine": "479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "490", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSupportedOutputCapability(camera: CameraDevice, mode: SceneMode): CameraOutputCapability;", - "mainBuggyLine": "490" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "499", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isCameraMuted(): boolean;", - "mainBuggyLine": "499" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "509", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isCameraMuteSupported(): boolean;", - "mainBuggyLine": "509" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "519", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "muteCamera(mute: boolean): void;", - "mainBuggyLine": "519" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "543", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createCameraInput(camera: CameraDevice): CameraInput;", - "mainBuggyLine": "543" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "569", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createCameraInput(position: CameraPosition, type: CameraType): CameraInput;", - "mainBuggyLine": "569" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "592", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createPreviewOutput(profile: Profile, surfaceId: string): PreviewOutput;", - "mainBuggyLine": "592" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "606", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createPhotoOutput(profile: Profile, surfaceId: string): PhotoOutput;", - "mainBuggyLine": "606" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "631", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createPhotoOutput(profile: Profile): PhotoOutput;", - "mainBuggyLine": "631" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "654", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createVideoOutput(profile: VideoProfile, surfaceId: string): VideoOutput;", - "mainBuggyLine": "654" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "675", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createMetadataOutput(metadataObjectTypes: Array): MetadataOutput;", - "mainBuggyLine": "675" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "687", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createCaptureSession(): CaptureSession;", - "mainBuggyLine": "687" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "698", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createSession(mode: SceneMode): T;", - "mainBuggyLine": "698" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "708", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'cameraStatus', callback: AsyncCallback): void;", - "mainBuggyLine": "708" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "718", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'cameraStatus', callback?: AsyncCallback): void;", - "mainBuggyLine": "718" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "729", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'cameraMute', callback: AsyncCallback): void;", - "mainBuggyLine": "729" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "740", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'cameraMute', callback?: AsyncCallback): void;", - "mainBuggyLine": "740" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "765", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isPrelaunchSupported(camera: CameraDevice): boolean;", - "mainBuggyLine": "765" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "793", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setPrelaunchConfig(prelaunchConfig: PrelaunchConfig): void;", - "mainBuggyLine": "793" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "803", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "prelaunch(): void;", - "mainBuggyLine": "803" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "828", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "preSwitchCamera(cameraId: string): void;", - "mainBuggyLine": "828" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "851", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createDeferredPreviewOutput(profile: Profile): PreviewOutput;", - "mainBuggyLine": "851" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "860", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isTorchSupported(): boolean;", - "mainBuggyLine": "860" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "869", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isTorchModeSupported(mode: TorchMode): boolean;", - "mainBuggyLine": "869" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "878", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getTorchMode(): TorchMode;", - "mainBuggyLine": "878" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "898", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setTorchMode(mode: TorchMode): void;", - "mainBuggyLine": "898" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "908", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'torchStatusChange', callback: AsyncCallback): void;", - "mainBuggyLine": "908" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "918", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'torchStatusChange', callback?: AsyncCallback): void;", - "mainBuggyLine": "918" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "928", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface TorchStatusInfo", - "mainBuggyLine": "928" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "937", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly isTorchAvailable: boolean;", - "mainBuggyLine": "937" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "947", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly isTorchActive: boolean;", - "mainBuggyLine": "947" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "957", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly torchLevel: number;", - "mainBuggyLine": "957" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "967", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum TorchMode", - "mainBuggyLine": "967" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "974", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OFF = 0", - "mainBuggyLine": "974" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "982", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ON = 1", - "mainBuggyLine": "982" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "990", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUTO = 2", - "mainBuggyLine": "990" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1000", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface CameraStatusInfo", - "mainBuggyLine": "1000" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1008", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "camera: CameraDevice;", - "mainBuggyLine": "1008" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1017", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "status: CameraStatus;", - "mainBuggyLine": "1017" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1104", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum CameraType", - "mainBuggyLine": "1104" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1111", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAMERA_TYPE_DEFAULT = 0", - "mainBuggyLine": "1111" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1119", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAMERA_TYPE_WIDE_ANGLE = 1", - "mainBuggyLine": "1119" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1127", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAMERA_TYPE_ULTRA_WIDE = 2", - "mainBuggyLine": "1127" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1135", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAMERA_TYPE_TELEPHOTO = 3", - "mainBuggyLine": "1135" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1143", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAMERA_TYPE_TRUE_DEPTH = 4", - "mainBuggyLine": "1143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1153", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum ConnectionType", - "mainBuggyLine": "1153" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1160", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAMERA_CONNECTION_BUILT_IN = 0", - "mainBuggyLine": "1160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1168", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAMERA_CONNECTION_USB_PLUGIN = 1", - "mainBuggyLine": "1168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1176", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAMERA_CONNECTION_REMOTE = 2", - "mainBuggyLine": "1176" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1187", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum HostDeviceType", - "mainBuggyLine": "1187" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1195", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "UNKNOWN_TYPE = 0", - "mainBuggyLine": "1195" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1204", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHONE = 0x0E", - "mainBuggyLine": "1204" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1213", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TABLET = 0x11", - "mainBuggyLine": "1213" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1223", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface CameraDevice", - "mainBuggyLine": "1223" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1232", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly cameraId: string;", - "mainBuggyLine": "1232" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1242", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly cameraPosition: CameraPosition;", - "mainBuggyLine": "1242" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1252", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly cameraType: CameraType;", - "mainBuggyLine": "1252" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1262", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly connectionType: ConnectionType;", - "mainBuggyLine": "1262" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1273", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly hostDeviceName: string;", - "mainBuggyLine": "1273" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1284", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly hostDeviceType: HostDeviceType;", - "mainBuggyLine": "1284" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1294", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly cameraOrientation: number;", - "mainBuggyLine": "1294" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1304", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Size", - "mainBuggyLine": "1304" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1312", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "height: number;", - "mainBuggyLine": "1312" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1321", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "width: number;", - "mainBuggyLine": "1321" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1331", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Point", - "mainBuggyLine": "1331" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1339", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "x: number;", - "mainBuggyLine": "1339" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1348", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "y: number;", - "mainBuggyLine": "1348" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1358", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface CameraInput", - "mainBuggyLine": "1358" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1369", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "open(callback: AsyncCallback): void;", - "mainBuggyLine": "1369" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1381", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "open(): Promise;", - "mainBuggyLine": "1381" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1394", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "open(isSecureEnabled: boolean): Promise;", - "mainBuggyLine": "1394" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1404", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "close(callback: AsyncCallback): void;", - "mainBuggyLine": "1404" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1414", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "close(): Promise;", - "mainBuggyLine": "1414" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1425", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', camera: CameraDevice, callback: ErrorCallback): void;", - "mainBuggyLine": "1425" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1436", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', camera: CameraDevice, callback?: ErrorCallback): void;", - "mainBuggyLine": "1436" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1446", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum SceneMode", - "mainBuggyLine": "1446" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1453", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NORMAL_PHOTO = 1", - "mainBuggyLine": "1453" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1461", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NORMAL_VIDEO = 2", - "mainBuggyLine": "1461" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1470", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PORTRAIT_PHOTO = 3", - "mainBuggyLine": "1470" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1479", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NIGHT_PHOTO = 4", - "mainBuggyLine": "1479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1488", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PROFESSIONAL_PHOTO = 5", - "mainBuggyLine": "1488" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1497", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PROFESSIONAL_VIDEO = 6", - "mainBuggyLine": "1497" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1506", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SLOW_MOTION_VIDEO = 7", - "mainBuggyLine": "1506" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1515", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HIGH_RESOLUTION_PHOTO = 11", - "mainBuggyLine": "1515" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1523", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SECURE_PHOTO = 12", - "mainBuggyLine": "1523" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1533", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum CameraFormat", - "mainBuggyLine": "1533" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1540", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAMERA_FORMAT_RGBA_8888 = 3", - "mainBuggyLine": "1540" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1549", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAMERA_FORMAT_DNG = 4", - "mainBuggyLine": "1549" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1557", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAMERA_FORMAT_YUV_420_SP = 1003", - "mainBuggyLine": "1557" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1565", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAMERA_FORMAT_JPEG = 2000", - "mainBuggyLine": "1565" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1573", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAMERA_FORMAT_YCBCR_P010", - "mainBuggyLine": "1573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1581", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAMERA_FORMAT_YCRCB_P010", - "mainBuggyLine": "1581" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1591", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum FlashMode", - "mainBuggyLine": "1591" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1598", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FLASH_MODE_CLOSE = 0", - "mainBuggyLine": "1598" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1606", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FLASH_MODE_OPEN = 1", - "mainBuggyLine": "1606" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1614", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FLASH_MODE_AUTO = 2", - "mainBuggyLine": "1614" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1622", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FLASH_MODE_ALWAYS_OPEN = 3", - "mainBuggyLine": "1622" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1633", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface LcdFlashStatus", - "mainBuggyLine": "1633" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1642", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly isLcdFlashNeeded: boolean;", - "mainBuggyLine": "1642" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1652", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly lcdCompensation: number;", - "mainBuggyLine": "1652" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1662", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface FlashQuery", - "mainBuggyLine": "1662" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1680", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hasFlash(): boolean;", - "mainBuggyLine": "1680" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1701", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isFlashModeSupported(flashMode: FlashMode): boolean;", - "mainBuggyLine": "1701" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1713", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isLcdFlashSupported(): boolean;", - "mainBuggyLine": "1713" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1723", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Flash", - "mainBuggyLine": "1723" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1723", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface Flash", - "mainBuggyLine": "1723" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1732", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFlashMode(): FlashMode;", - "mainBuggyLine": "1732" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1742", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setFlashMode(flashMode: FlashMode): void;", - "mainBuggyLine": "1742" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1752", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum ExposureMode", - "mainBuggyLine": "1752" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1759", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EXPOSURE_MODE_LOCKED = 0", - "mainBuggyLine": "1759" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1767", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EXPOSURE_MODE_AUTO = 1", - "mainBuggyLine": "1767" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1775", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EXPOSURE_MODE_CONTINUOUS_AUTO = 2", - "mainBuggyLine": "1775" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1784", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EXPOSURE_MODE_MANUAL = 3", - "mainBuggyLine": "1784" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1795", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum ExposureMeteringMode", - "mainBuggyLine": "1795" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1803", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MATRIX = 0", - "mainBuggyLine": "1803" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1812", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CENTER = 1", - "mainBuggyLine": "1812" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1821", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SPOT = 2", - "mainBuggyLine": "1821" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1831", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AutoExposureQuery", - "mainBuggyLine": "1831" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1851", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isExposureModeSupported(aeMode: ExposureMode): boolean;", - "mainBuggyLine": "1851" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1870", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getExposureBiasRange(): Array;", - "mainBuggyLine": "1870" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1884", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isExposureMeteringModeSupported(aeMeteringMode: ExposureMeteringMode): boolean;", - "mainBuggyLine": "1884" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1894", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AutoExposure", - "mainBuggyLine": "1894" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1894", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface AutoExposure", - "mainBuggyLine": "1894" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1903", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getExposureMode(): ExposureMode;", - "mainBuggyLine": "1903" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1913", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setExposureMode(aeMode: ExposureMode): void;", - "mainBuggyLine": "1913" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1923", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getMeteringPoint(): Point;", - "mainBuggyLine": "1923" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1933", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setMeteringPoint(point: Point): void;", - "mainBuggyLine": "1933" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1943", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getExposureBiasRange(): Array;", - "mainBuggyLine": "1943" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1962", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setExposureBias(exposureBias: number): void;", - "mainBuggyLine": "1962" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1972", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getExposureValue(): number;", - "mainBuggyLine": "1972" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1984", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getExposureMeteringMode(): ExposureMeteringMode;", - "mainBuggyLine": "1984" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "1997", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setExposureMeteringMode(aeMeteringMode: ExposureMeteringMode): void;", - "mainBuggyLine": "1997" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2007", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum FocusMode", - "mainBuggyLine": "2007" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2014", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FOCUS_MODE_MANUAL = 0", - "mainBuggyLine": "2014" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2022", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FOCUS_MODE_CONTINUOUS_AUTO = 1", - "mainBuggyLine": "2022" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2030", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FOCUS_MODE_AUTO = 2", - "mainBuggyLine": "2030" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2038", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FOCUS_MODE_LOCKED = 3", - "mainBuggyLine": "2038" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2048", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum FocusState", - "mainBuggyLine": "2048" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2055", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FOCUS_STATE_SCAN = 0", - "mainBuggyLine": "2055" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2063", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FOCUS_STATE_FOCUSED = 1", - "mainBuggyLine": "2063" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2071", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FOCUS_STATE_UNFOCUSED = 2", - "mainBuggyLine": "2071" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2081", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface FocusQuery", - "mainBuggyLine": "2081" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2101", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isFocusModeSupported(afMode: FocusMode): boolean;", - "mainBuggyLine": "2101" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2113", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isFocusAssistSupported(): boolean;", - "mainBuggyLine": "2113" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2123", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Focus", - "mainBuggyLine": "2123" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2123", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface Focus", - "mainBuggyLine": "2123" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2132", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFocusMode(): FocusMode;", - "mainBuggyLine": "2132" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2142", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setFocusMode(afMode: FocusMode): void;", - "mainBuggyLine": "2142" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2152", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setFocusPoint(point: Point): void;", - "mainBuggyLine": "2152" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2162", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFocusPoint(): Point;", - "mainBuggyLine": "2162" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2172", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFocalLength(): number;", - "mainBuggyLine": "2172" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2184", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFocusAssist(): boolean;", - "mainBuggyLine": "2184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2197", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setFocusAssist(enabled: boolean): void;", - "mainBuggyLine": "2197" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2208", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ManualFocus", - "mainBuggyLine": "2208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2219", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFocusDistance(): number;", - "mainBuggyLine": "2219" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2232", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setFocusDistance(distance: number): void;", - "mainBuggyLine": "2232" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2243", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum WhiteBalanceMode", - "mainBuggyLine": "2243" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2251", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUTO = 0", - "mainBuggyLine": "2251" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2260", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CLOUDY = 1", - "mainBuggyLine": "2260" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2269", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INCANDESCENT = 2", - "mainBuggyLine": "2269" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2278", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FLUORESCENT = 3", - "mainBuggyLine": "2278" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2287", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DAYLIGHT = 4", - "mainBuggyLine": "2287" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2296", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MANUAL = 5", - "mainBuggyLine": "2296" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2307", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface WhiteBalanceQuery", - "mainBuggyLine": "2307" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2320", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isWhiteBalanceModeSupported(mode: WhiteBalanceMode): boolean;", - "mainBuggyLine": "2320" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2332", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getWhiteBalanceRange(): Array;", - "mainBuggyLine": "2332" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2343", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface WhiteBalance", - "mainBuggyLine": "2343" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2343", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface WhiteBalance", - "mainBuggyLine": "2343" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2354", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getWhiteBalanceMode(): WhiteBalanceMode;", - "mainBuggyLine": "2354" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2367", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setWhiteBalanceMode(mode: WhiteBalanceMode): void;", - "mainBuggyLine": "2367" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2379", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getWhiteBalance(): number;", - "mainBuggyLine": "2379" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2392", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setWhiteBalance(whiteBalance: number): void;", - "mainBuggyLine": "2392" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2403", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ManualIsoQuery", - "mainBuggyLine": "2403" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2414", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isManualIsoSupported(): boolean;", - "mainBuggyLine": "2414" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2426", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getIsoRange(): Array;", - "mainBuggyLine": "2426" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2437", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ManualIso", - "mainBuggyLine": "2437" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2437", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ManualIso", - "mainBuggyLine": "2437" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2448", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getIso(): number;", - "mainBuggyLine": "2448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2461", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setIso(iso: number): void;", - "mainBuggyLine": "2461" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2471", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum SmoothZoomMode", - "mainBuggyLine": "2471" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2478", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NORMAL = 0", - "mainBuggyLine": "2478" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2488", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface SmoothZoomInfo", - "mainBuggyLine": "2488" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2496", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "duration: number;", - "mainBuggyLine": "2496" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2507", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ZoomPointInfo", - "mainBuggyLine": "2507" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2517", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly zoomRatio: number;", - "mainBuggyLine": "2517" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2528", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly equivalentFocalLength: number;", - "mainBuggyLine": "2528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2538", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ZoomQuery", - "mainBuggyLine": "2538" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2556", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getZoomRatioRange(): Array;", - "mainBuggyLine": "2556" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2568", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getZoomPointInfos(): Array;", - "mainBuggyLine": "2568" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2578", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Zoom", - "mainBuggyLine": "2578" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2578", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface Zoom", - "mainBuggyLine": "2578" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2596", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getZoomRatio(): number;", - "mainBuggyLine": "2596" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2606", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setZoomRatio(zoomRatio: number): void;", - "mainBuggyLine": "2606" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2617", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setSmoothZoom(targetRatio: number, mode?: SmoothZoomMode): void;", - "mainBuggyLine": "2617" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2628", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "prepareZoom(): void;", - "mainBuggyLine": "2628" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2639", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "unprepareZoom(): void;", - "mainBuggyLine": "2639" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2649", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum VideoStabilizationMode", - "mainBuggyLine": "2649" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2656", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OFF = 0", - "mainBuggyLine": "2656" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2664", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LOW = 1", - "mainBuggyLine": "2664" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2672", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MIDDLE = 2", - "mainBuggyLine": "2672" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2680", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HIGH = 3", - "mainBuggyLine": "2680" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2688", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUTO = 4", - "mainBuggyLine": "2688" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2698", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface StabilizationQuery", - "mainBuggyLine": "2698" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2718", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isVideoStabilizationModeSupported(vsMode: VideoStabilizationMode): boolean;", - "mainBuggyLine": "2718" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2728", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Stabilization", - "mainBuggyLine": "2728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2728", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface Stabilization", - "mainBuggyLine": "2728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2737", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getActiveVideoStabilizationMode(): VideoStabilizationMode;", - "mainBuggyLine": "2737" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2747", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setVideoStabilizationMode(mode: VideoStabilizationMode): void;", - "mainBuggyLine": "2747" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2758", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum BeautyType", - "mainBuggyLine": "2758" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2766", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUTO = 0", - "mainBuggyLine": "2766" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2775", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SKIN_SMOOTH = 1", - "mainBuggyLine": "2775" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2784", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FACE_SLENDER = 2", - "mainBuggyLine": "2784" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2793", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SKIN_TONE = 3", - "mainBuggyLine": "2793" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2804", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface BeautyQuery", - "mainBuggyLine": "2804" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2826", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSupportedBeautyTypes(): Array;", - "mainBuggyLine": "2826" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2851", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSupportedBeautyRange(type: BeautyType): Array;", - "mainBuggyLine": "2851" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2862", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Beauty", - "mainBuggyLine": "2862" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2862", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface Beauty", - "mainBuggyLine": "2862" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2874", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getBeauty(type: BeautyType): number;", - "mainBuggyLine": "2874" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2887", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setBeauty(type: BeautyType, value: number): void;", - "mainBuggyLine": "2887" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2898", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum ColorEffectType", - "mainBuggyLine": "2898" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2906", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NORMAL = 0", - "mainBuggyLine": "2906" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2915", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "BRIGHT = 1", - "mainBuggyLine": "2915" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2924", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SOFT = 2", - "mainBuggyLine": "2924" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2933", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "BLACK_WHITE = 3", - "mainBuggyLine": "2933" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2944", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ColorEffectQuery", - "mainBuggyLine": "2944" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2966", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSupportedColorEffects(): Array;", - "mainBuggyLine": "2966" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2977", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ColorEffect", - "mainBuggyLine": "2977" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2977", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ColorEffect", - "mainBuggyLine": "2977" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "2988", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getColorEffect(): ColorEffectType;", - "mainBuggyLine": "2988" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3000", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setColorEffect(type: ColorEffectType): void;", - "mainBuggyLine": "3000" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3010", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ColorManagementQuery", - "mainBuggyLine": "3010" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3019", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSupportedColorSpaces(): Array;", - "mainBuggyLine": "3019" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3029", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ColorManagement", - "mainBuggyLine": "3029" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3029", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ColorManagement", - "mainBuggyLine": "3029" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3038", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getActiveColorSpace(): colorSpaceManager.ColorSpace;", - "mainBuggyLine": "3038" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3051", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setColorSpace(colorSpace: colorSpaceManager.ColorSpace): void;", - "mainBuggyLine": "3051" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3062", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface MacroQuery", - "mainBuggyLine": "3062" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3082", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isMacroSupported(): boolean;", - "mainBuggyLine": "3082" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3093", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Macro", - "mainBuggyLine": "3093" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3093", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface Macro", - "mainBuggyLine": "3093" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3115", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableMacro(enabled: boolean): void;", - "mainBuggyLine": "3115" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3125", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Session", - "mainBuggyLine": "3125" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3141", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "beginConfig(): void;", - "mainBuggyLine": "3141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3152", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "commitConfig(callback: AsyncCallback): void;", - "mainBuggyLine": "3152" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3163", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "commitConfig(): Promise;", - "mainBuggyLine": "3163" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3174", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "canAddInput(cameraInput: CameraInput): boolean;", - "mainBuggyLine": "3174" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3199", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addInput(cameraInput: CameraInput): void;", - "mainBuggyLine": "3199" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3224", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "removeInput(cameraInput: CameraInput): void;", - "mainBuggyLine": "3224" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3235", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "canAddOutput(cameraOutput: CameraOutput): boolean;", - "mainBuggyLine": "3235" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3260", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addOutput(cameraOutput: CameraOutput): void;", - "mainBuggyLine": "3260" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3285", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "removeOutput(cameraOutput: CameraOutput): void;", - "mainBuggyLine": "3285" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3306", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "start(callback: AsyncCallback): void;", - "mainBuggyLine": "3306" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3327", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "start(): Promise;", - "mainBuggyLine": "3327" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3337", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stop(callback: AsyncCallback): void;", - "mainBuggyLine": "3337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3347", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stop(): Promise;", - "mainBuggyLine": "3347" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3357", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(callback: AsyncCallback): void;", - "mainBuggyLine": "3357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3367", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(): Promise;", - "mainBuggyLine": "3367" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3379", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface CaptureSession", - "mainBuggyLine": "3379" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3389", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "beginConfig(): void;", - "mainBuggyLine": "3389" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3402", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "commitConfig(callback: AsyncCallback): void;", - "mainBuggyLine": "3402" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3415", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "commitConfig(): Promise;", - "mainBuggyLine": "3415" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3428", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addInput(cameraInput: CameraInput): void;", - "mainBuggyLine": "3428" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3441", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "removeInput(cameraInput: CameraInput): void;", - "mainBuggyLine": "3441" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3454", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addOutput(cameraOutput: CameraOutput): void;", - "mainBuggyLine": "3454" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3467", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "removeOutput(cameraOutput: CameraOutput): void;", - "mainBuggyLine": "3467" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3480", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "start(callback: AsyncCallback): void;", - "mainBuggyLine": "3480" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3493", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "start(): Promise;", - "mainBuggyLine": "3493" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3505", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stop(callback: AsyncCallback): void;", - "mainBuggyLine": "3505" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3517", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stop(): Promise;", - "mainBuggyLine": "3517" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3529", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(callback: AsyncCallback): void;", - "mainBuggyLine": "3529" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3541", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(): Promise;", - "mainBuggyLine": "3541" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3553", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hasFlash(): boolean;", - "mainBuggyLine": "3553" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3566", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isFlashModeSupported(flashMode: FlashMode): boolean;", - "mainBuggyLine": "3566" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3578", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFlashMode(): FlashMode;", - "mainBuggyLine": "3578" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3590", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setFlashMode(flashMode: FlashMode): void;", - "mainBuggyLine": "3590" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3603", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isExposureModeSupported(aeMode: ExposureMode): boolean;", - "mainBuggyLine": "3603" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3615", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getExposureMode(): ExposureMode;", - "mainBuggyLine": "3615" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3627", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setExposureMode(aeMode: ExposureMode): void;", - "mainBuggyLine": "3627" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3639", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getMeteringPoint(): Point;", - "mainBuggyLine": "3639" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3651", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setMeteringPoint(point: Point): void;", - "mainBuggyLine": "3651" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3663", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getExposureBiasRange(): Array;", - "mainBuggyLine": "3663" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3675", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setExposureBias(exposureBias: number): void;", - "mainBuggyLine": "3675" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3687", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getExposureValue(): number;", - "mainBuggyLine": "3687" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3700", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isFocusModeSupported(afMode: FocusMode): boolean;", - "mainBuggyLine": "3700" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3712", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFocusMode(): FocusMode;", - "mainBuggyLine": "3712" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3724", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setFocusMode(afMode: FocusMode): void;", - "mainBuggyLine": "3724" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3736", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setFocusPoint(point: Point): void;", - "mainBuggyLine": "3736" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3748", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFocusPoint(): Point;", - "mainBuggyLine": "3748" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3760", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFocalLength(): number;", - "mainBuggyLine": "3760" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3772", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getZoomRatioRange(): Array;", - "mainBuggyLine": "3772" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3784", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getZoomRatio(): number;", - "mainBuggyLine": "3784" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3796", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setZoomRatio(zoomRatio: number): void;", - "mainBuggyLine": "3796" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3809", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isVideoStabilizationModeSupported(vsMode: VideoStabilizationMode): boolean;", - "mainBuggyLine": "3809" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3821", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getActiveVideoStabilizationMode(): VideoStabilizationMode;", - "mainBuggyLine": "3821" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3833", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setVideoStabilizationMode(mode: VideoStabilizationMode): void;", - "mainBuggyLine": "3833" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3845", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'focusStateChange', callback: AsyncCallback): void;", - "mainBuggyLine": "3845" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3857", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'focusStateChange', callback?: AsyncCallback): void;", - "mainBuggyLine": "3857" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3869", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "3869" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3881", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "3881" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3894", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSupportedBeautyTypes(): Array;", - "mainBuggyLine": "3894" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3908", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSupportedBeautyRange(type: BeautyType): Array;", - "mainBuggyLine": "3908" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3922", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getBeauty(type: BeautyType): number;", - "mainBuggyLine": "3922" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3936", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setBeauty(type: BeautyType, value: number): void;", - "mainBuggyLine": "3936" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3947", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum SceneFeatureType", - "mainBuggyLine": "3947" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3955", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MOON_CAPTURE_BOOST = 0", - "mainBuggyLine": "3955" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3966", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface SceneFeatureDetectionResult", - "mainBuggyLine": "3966" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3976", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly featureType: SceneFeatureType;", - "mainBuggyLine": "3976" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3987", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly detected: boolean;", - "mainBuggyLine": "3987" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "3998", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface SceneDetectionQuery", - "mainBuggyLine": "3998" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4010", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isSceneFeatureSupported(type: SceneFeatureType): boolean;", - "mainBuggyLine": "4010" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4021", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface SceneDetection", - "mainBuggyLine": "4021" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4021", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface SceneDetection", - "mainBuggyLine": "4021" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4033", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableSceneFeature(type: SceneFeatureType, enabled: boolean): void;", - "mainBuggyLine": "4033" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4044", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface PhotoSessionForSys", - "mainBuggyLine": "4044" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4044", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface PhotoSessionForSys", - "mainBuggyLine": "4044" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4054", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface PhotoSession", - "mainBuggyLine": "4054" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4054", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface PhotoSession", - "mainBuggyLine": "4054" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4063", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "4063" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4073", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "4073" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4083", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'focusStateChange', callback: AsyncCallback): void;", - "mainBuggyLine": "4083" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4093", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'focusStateChange', callback?: AsyncCallback): void;", - "mainBuggyLine": "4093" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4103", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'smoothZoomInfoAvailable', callback: AsyncCallback): void;", - "mainBuggyLine": "4103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4113", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'smoothZoomInfoAvailable', callback?: AsyncCallback): void;", - "mainBuggyLine": "4113" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4125", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'macroStatusChanged', callback: AsyncCallback): void;", - "mainBuggyLine": "4125" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4137", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'macroStatusChanged', callback?: AsyncCallback): void;", - "mainBuggyLine": "4137" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4150", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'featureDetection', featureType: SceneFeatureType, callback: AsyncCallback): void;", - "mainBuggyLine": "4150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4163", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'featureDetection', featureType: SceneFeatureType, callback?: AsyncCallback): void;", - "mainBuggyLine": "4163" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4174", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface VideoSessionForSys", - "mainBuggyLine": "4174" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4174", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface VideoSessionForSys", - "mainBuggyLine": "4174" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4184", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface VideoSession", - "mainBuggyLine": "4184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4184", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface VideoSession", - "mainBuggyLine": "4184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4193", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "4193" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4203", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "4203" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4213", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'focusStateChange', callback: AsyncCallback): void;", - "mainBuggyLine": "4213" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4223", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'focusStateChange', callback?: AsyncCallback): void;", - "mainBuggyLine": "4223" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4233", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'smoothZoomInfoAvailable', callback: AsyncCallback): void;", - "mainBuggyLine": "4233" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4243", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'smoothZoomInfoAvailable', callback?: AsyncCallback): void;", - "mainBuggyLine": "4243" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4255", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'macroStatusChanged', callback: AsyncCallback): void;", - "mainBuggyLine": "4255" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4267", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'macroStatusChanged', callback?: AsyncCallback): void;", - "mainBuggyLine": "4267" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4278", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum PortraitEffect", - "mainBuggyLine": "4278" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4286", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OFF = 0", - "mainBuggyLine": "4286" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4295", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CIRCLES = 1", - "mainBuggyLine": "4295" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4304", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HEART = 2", - "mainBuggyLine": "4304" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4313", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ROTATED = 3", - "mainBuggyLine": "4313" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4322", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STUDIO = 4", - "mainBuggyLine": "4322" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4331", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "THEATER = 5", - "mainBuggyLine": "4331" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4342", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface PortraitQuery", - "mainBuggyLine": "4342" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4374", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSupportedPortraitEffects(): Array;", - "mainBuggyLine": "4374" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4385", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Portrait", - "mainBuggyLine": "4385" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4385", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface Portrait", - "mainBuggyLine": "4385" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4406", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPortraitEffect(): PortraitEffect;", - "mainBuggyLine": "4406" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4428", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setPortraitEffect(effect: PortraitEffect): void;", - "mainBuggyLine": "4428" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4439", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ZoomRange", - "mainBuggyLine": "4439" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4449", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly min: number;", - "mainBuggyLine": "4449" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4460", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly max: number;", - "mainBuggyLine": "4460" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4471", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface PhysicalAperture", - "mainBuggyLine": "4471" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4480", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "zoomRange: ZoomRange;", - "mainBuggyLine": "4480" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4490", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "apertures: Array;", - "mainBuggyLine": "4490" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4501", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ApertureQuery", - "mainBuggyLine": "4501" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4523", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSupportedVirtualApertures(): Array;", - "mainBuggyLine": "4523" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4546", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSupportedPhysicalApertures(): Array;", - "mainBuggyLine": "4546" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4557", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Aperture", - "mainBuggyLine": "4557" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4557", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface Aperture", - "mainBuggyLine": "4557" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4568", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getVirtualAperture(): number;", - "mainBuggyLine": "4568" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4580", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setVirtualAperture(aperture: number): void;", - "mainBuggyLine": "4580" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4592", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPhysicalAperture(): number;", - "mainBuggyLine": "4592" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4604", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setPhysicalAperture(aperture: number): void;", - "mainBuggyLine": "4604" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4615", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface PortraitPhotoSession", - "mainBuggyLine": "4615" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4615", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface PortraitPhotoSession", - "mainBuggyLine": "4615" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4625", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "4625" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4636", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "4636" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4647", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'focusStateChange', callback: AsyncCallback): void;", - "mainBuggyLine": "4647" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4658", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'focusStateChange', callback?: AsyncCallback): void;", - "mainBuggyLine": "4658" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4669", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'smoothZoomInfoAvailable', callback: AsyncCallback): void;", - "mainBuggyLine": "4669" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4680", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'smoothZoomInfoAvailable', callback?: AsyncCallback): void;", - "mainBuggyLine": "4680" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4691", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ManualExposureQuery", - "mainBuggyLine": "4691" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4714", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSupportedExposureRange(): Array;", - "mainBuggyLine": "4714" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4725", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ManualExposure", - "mainBuggyLine": "4725" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4725", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ManualExposure", - "mainBuggyLine": "4725" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4747", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getExposure(): number;", - "mainBuggyLine": "4747" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4770", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setExposure(exposure: number): void;", - "mainBuggyLine": "4770" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4781", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface NightPhotoSession", - "mainBuggyLine": "4781" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4781", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface NightPhotoSession", - "mainBuggyLine": "4781" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4791", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "4791" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4802", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "4802" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4813", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'focusStateChange', callback: AsyncCallback): void;", - "mainBuggyLine": "4813" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4824", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'focusStateChange', callback?: AsyncCallback): void;", - "mainBuggyLine": "4824" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4835", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'smoothZoomInfoAvailable', callback: AsyncCallback): void;", - "mainBuggyLine": "4835" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4846", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'smoothZoomInfoAvailable', callback?: AsyncCallback): void;", - "mainBuggyLine": "4846" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4858", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'lcdFlashStatus', callback: AsyncCallback): void;", - "mainBuggyLine": "4858" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4870", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'lcdFlashStatus', callback?: AsyncCallback): void;", - "mainBuggyLine": "4870" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4881", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface IsoInfo", - "mainBuggyLine": "4881" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4891", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly iso?: number;", - "mainBuggyLine": "4891" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4902", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ExposureInfo", - "mainBuggyLine": "4902" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4912", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly exposureTime?: number;", - "mainBuggyLine": "4912" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4923", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ApertureInfo", - "mainBuggyLine": "4923" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4933", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly aperture?: number;", - "mainBuggyLine": "4933" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4944", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface LuminationInfo", - "mainBuggyLine": "4944" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4954", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly lumination?: number;", - "mainBuggyLine": "4954" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4965", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ProfessionalPhotoSession", - "mainBuggyLine": "4965" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4965", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ProfessionalPhotoSession", - "mainBuggyLine": "4965" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4976", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "4976" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4988", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "4988" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5000", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'focusStateChange', callback: AsyncCallback): void;", - "mainBuggyLine": "5000" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5012", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'focusStateChange', callback?: AsyncCallback): void;", - "mainBuggyLine": "5012" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5024", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'smoothZoomInfoAvailable', callback: AsyncCallback): void;", - "mainBuggyLine": "5024" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5036", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'smoothZoomInfoAvailable', callback?: AsyncCallback): void;", - "mainBuggyLine": "5036" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5048", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'isoInfo', callback: AsyncCallback): void;", - "mainBuggyLine": "5048" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5060", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'isoInfo', callback?: AsyncCallback): void;", - "mainBuggyLine": "5060" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5072", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'exposureInfo', callback: AsyncCallback): void;", - "mainBuggyLine": "5072" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5084", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'exposureInfo', callback?: AsyncCallback): void;", - "mainBuggyLine": "5084" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5096", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'apertureInfo', callback: AsyncCallback): void;", - "mainBuggyLine": "5096" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5108", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'apertureInfo', callback?: AsyncCallback): void;", - "mainBuggyLine": "5108" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5120", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'luminationInfo', callback: AsyncCallback): void;", - "mainBuggyLine": "5120" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5132", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'luminationInfo', callback?: AsyncCallback): void;", - "mainBuggyLine": "5132" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5143", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ProfessionalVideoSession", - "mainBuggyLine": "5143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5143", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ProfessionalVideoSession", - "mainBuggyLine": "5143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5154", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "5154" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5166", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "5166" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5178", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'focusStateChange', callback: AsyncCallback): void;", - "mainBuggyLine": "5178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5190", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'focusStateChange', callback?: AsyncCallback): void;", - "mainBuggyLine": "5190" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5202", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'smoothZoomInfoAvailable', callback: AsyncCallback): void;", - "mainBuggyLine": "5202" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5214", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'smoothZoomInfoAvailable', callback?: AsyncCallback): void;", - "mainBuggyLine": "5214" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5226", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'isoInfo', callback: AsyncCallback): void;", - "mainBuggyLine": "5226" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5238", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'isoInfo', callback?: AsyncCallback): void;", - "mainBuggyLine": "5238" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5250", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'exposureInfo', callback: AsyncCallback): void;", - "mainBuggyLine": "5250" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5262", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'exposureInfo', callback?: AsyncCallback): void;", - "mainBuggyLine": "5262" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5274", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'apertureInfo', callback: AsyncCallback): void;", - "mainBuggyLine": "5274" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5286", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'apertureInfo', callback?: AsyncCallback): void;", - "mainBuggyLine": "5286" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5298", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'luminationInfo', callback: AsyncCallback): void;", - "mainBuggyLine": "5298" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5310", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'luminationInfo', callback?: AsyncCallback): void;", - "mainBuggyLine": "5310" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5321", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum SlowMotionStatus", - "mainBuggyLine": "5321" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5329", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DISABLED = 0", - "mainBuggyLine": "5329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5338", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "READY = 1", - "mainBuggyLine": "5338" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5347", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VIDEO_START = 2", - "mainBuggyLine": "5347" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5356", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VIDEO_DONE = 3", - "mainBuggyLine": "5356" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5365", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FINISHED = 4", - "mainBuggyLine": "5365" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5376", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface SlowMotionVideoSession", - "mainBuggyLine": "5376" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5376", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface SlowMotionVideoSession", - "mainBuggyLine": "5376" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5387", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "5387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5399", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "5399" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5411", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'focusStateChange', callback: AsyncCallback): void;", - "mainBuggyLine": "5411" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5423", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'focusStateChange', callback?: AsyncCallback): void;", - "mainBuggyLine": "5423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5435", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'smoothZoomInfoAvailable', callback: AsyncCallback): void;", - "mainBuggyLine": "5435" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5447", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'smoothZoomInfoAvailable', callback?: AsyncCallback): void;", - "mainBuggyLine": "5447" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5459", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isSlowMotionDetectionSupported(): boolean;", - "mainBuggyLine": "5459" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5472", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setSlowMotionDetectionArea(area: Rect): void;", - "mainBuggyLine": "5472" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5484", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'slowMotionStatus', callback: AsyncCallback): void;", - "mainBuggyLine": "5484" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5496", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'slowMotionStatus', callback?: AsyncCallback): void;", - "mainBuggyLine": "5496" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5507", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface HighResolutionPhotoSession", - "mainBuggyLine": "5507" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5507", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface HighResolutionPhotoSession", - "mainBuggyLine": "5507" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5518", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "5518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5530", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "5530" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5542", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'focusStateChange', callback: AsyncCallback): void;", - "mainBuggyLine": "5542" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5554", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'focusStateChange', callback?: AsyncCallback): void;", - "mainBuggyLine": "5554" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5565", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface MacroPhotoSession", - "mainBuggyLine": "5565" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5565", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface MacroPhotoSession", - "mainBuggyLine": "5565" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5576", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "5576" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5588", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "5588" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5600", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'focusStateChange', callback: AsyncCallback): void;", - "mainBuggyLine": "5600" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5612", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'focusStateChange', callback?: AsyncCallback): void;", - "mainBuggyLine": "5612" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5624", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'smoothZoomInfoAvailable', callback: AsyncCallback): void;", - "mainBuggyLine": "5624" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5636", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'smoothZoomInfoAvailable', callback?: AsyncCallback): void;", - "mainBuggyLine": "5636" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5647", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface MacroVideoSession", - "mainBuggyLine": "5647" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5647", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface MacroVideoSession", - "mainBuggyLine": "5647" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5658", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "5658" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5670", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "5670" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5682", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'focusStateChange', callback: AsyncCallback): void;", - "mainBuggyLine": "5682" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5694", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'focusStateChange', callback?: AsyncCallback): void;", - "mainBuggyLine": "5694" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5706", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'smoothZoomInfoAvailable', callback: AsyncCallback): void;", - "mainBuggyLine": "5706" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5718", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'smoothZoomInfoAvailable', callback?: AsyncCallback): void;", - "mainBuggyLine": "5718" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5728", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface SecureSession", - "mainBuggyLine": "5728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5728", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface SecureSession", - "mainBuggyLine": "5728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5739", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addSecureOutput(previewOutput: PreviewOutput): void;", - "mainBuggyLine": "5739" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5749", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "5749" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5759", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "5759" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5769", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'focusStateChange', callback: AsyncCallback): void;", - "mainBuggyLine": "5769" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5779", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'focusStateChange', callback?: AsyncCallback): void;", - "mainBuggyLine": "5779" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5789", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface CameraOutput", - "mainBuggyLine": "5789" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5798", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(callback: AsyncCallback): void;", - "mainBuggyLine": "5798" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5808", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(): Promise;", - "mainBuggyLine": "5808" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5819", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface SketchStatusData", - "mainBuggyLine": "5819" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5829", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "status: number;", - "mainBuggyLine": "5829" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5839", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sketchRatio: number;", - "mainBuggyLine": "5839" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5849", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface PreviewOutput", - "mainBuggyLine": "5849" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5849", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface PreviewOutput", - "mainBuggyLine": "5849" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5860", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "start(callback: AsyncCallback): void;", - "mainBuggyLine": "5860" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5872", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "start(): Promise;", - "mainBuggyLine": "5872" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5883", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stop(callback: AsyncCallback): void;", - "mainBuggyLine": "5883" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5894", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stop(): Promise;", - "mainBuggyLine": "5894" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5904", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'frameStart', callback: AsyncCallback): void;", - "mainBuggyLine": "5904" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5914", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'frameStart', callback?: AsyncCallback): void;", - "mainBuggyLine": "5914" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5924", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'frameEnd', callback: AsyncCallback): void;", - "mainBuggyLine": "5924" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5934", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'frameEnd', callback?: AsyncCallback): void;", - "mainBuggyLine": "5934" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5944", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "5944" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5954", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "5954" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5963", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSupportedFrameRates(): Array", - "mainBuggyLine": "5963" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5975", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setFrameRate(minFps: number, maxFps: number): void", - "mainBuggyLine": "5975" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5984", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getActiveFrameRate(): FrameRateRange;", - "mainBuggyLine": "5984" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5995", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addDeferredSurface(surfaceId: string): void;", - "mainBuggyLine": "5995" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6006", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isSketchSupported(): boolean;", - "mainBuggyLine": "6006" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6018", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSketchRatio(): number;", - "mainBuggyLine": "6018" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6042", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableSketch(enabled: boolean): void;", - "mainBuggyLine": "6042" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6066", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "attachSketchSurface(surfaceId: string): void;", - "mainBuggyLine": "6066" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6078", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'sketchStatusChanged', callback: AsyncCallback): void;", - "mainBuggyLine": "6078" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6090", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'sketchStatusChanged', callback?: AsyncCallback): void;", - "mainBuggyLine": "6090" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6100", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum ImageRotation", - "mainBuggyLine": "6100" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6107", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ROTATION_0 = 0", - "mainBuggyLine": "6107" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6115", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ROTATION_90 = 90", - "mainBuggyLine": "6115" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6123", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ROTATION_180 = 180", - "mainBuggyLine": "6123" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6131", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ROTATION_270 = 270", - "mainBuggyLine": "6131" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6141", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Location", - "mainBuggyLine": "6141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6149", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "latitude: number;", - "mainBuggyLine": "6149" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6158", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "longitude: number;", - "mainBuggyLine": "6158" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6167", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "altitude: number;", - "mainBuggyLine": "6167" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6177", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum QualityLevel", - "mainBuggyLine": "6177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6184", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "QUALITY_LEVEL_HIGH = 0", - "mainBuggyLine": "6184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6192", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "QUALITY_LEVEL_MEDIUM = 1", - "mainBuggyLine": "6192" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6200", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "QUALITY_LEVEL_LOW = 2", - "mainBuggyLine": "6200" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6210", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface PhotoCaptureSetting", - "mainBuggyLine": "6210" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6218", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "quality?: QualityLevel;", - "mainBuggyLine": "6218" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6227", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "rotation?: ImageRotation;", - "mainBuggyLine": "6227" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6236", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "location?: Location;", - "mainBuggyLine": "6236" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6245", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "mirror?: boolean;", - "mainBuggyLine": "6245" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6256", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum DeferredDeliveryImageType", - "mainBuggyLine": "6256" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6264", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NONE = 0", - "mainBuggyLine": "6264" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6273", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHOTO = 1", - "mainBuggyLine": "6273" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6282", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VIDEO = 2", - "mainBuggyLine": "6282" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6292", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Photo", - "mainBuggyLine": "6292" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6300", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "main: image.Image;", - "mainBuggyLine": "6300" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6310", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "raw?: image.Image;", - "mainBuggyLine": "6310" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6319", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(): Promise;", - "mainBuggyLine": "6319" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6330", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface DeferredPhotoProxy", - "mainBuggyLine": "6330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6340", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getThumbnail(): Promise;", - "mainBuggyLine": "6340" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6351", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(): Promise;", - "mainBuggyLine": "6351" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6362", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface PhotoOutput", - "mainBuggyLine": "6362" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6362", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface PhotoOutput", - "mainBuggyLine": "6362" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6372", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "capture(callback: AsyncCallback): void;", - "mainBuggyLine": "6372" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6383", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "capture(): Promise;", - "mainBuggyLine": "6383" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6396", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "capture(setting: PhotoCaptureSetting, callback: AsyncCallback): void;", - "mainBuggyLine": "6396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6421", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "capture(setting: PhotoCaptureSetting): Promise;", - "mainBuggyLine": "6421" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6433", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "confirmCapture();", - "mainBuggyLine": "6433" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6448", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isDeferredImageDeliverySupported(type: DeferredDeliveryImageType): boolean;", - "mainBuggyLine": "6448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6463", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isDeferredImageDeliveryEnabled(type: DeferredDeliveryImageType): boolean;", - "mainBuggyLine": "6463" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6477", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deferImageDelivery(type: DeferredDeliveryImageType): void;", - "mainBuggyLine": "6477" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6487", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'photoAvailable', callback: AsyncCallback): void;", - "mainBuggyLine": "6487" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6497", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'photoAvailable', callback?: AsyncCallback): void;", - "mainBuggyLine": "6497" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6509", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'deferredPhotoProxyAvailable', callback: AsyncCallback): void;", - "mainBuggyLine": "6509" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6521", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'deferredPhotoProxyAvailable', callback?: AsyncCallback): void;", - "mainBuggyLine": "6521" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6531", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'photoAssetAvailable', callback: AsyncCallback): void;", - "mainBuggyLine": "6531" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6541", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'photoAssetAvailable', callback?: AsyncCallback): void;", - "mainBuggyLine": "6541" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6550", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isMirrorSupported(): boolean;", - "mainBuggyLine": "6550" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6562", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'captureStart', callback: AsyncCallback): void;", - "mainBuggyLine": "6562" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6574", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'captureStart', callback?: AsyncCallback): void;", - "mainBuggyLine": "6574" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6584", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'captureStartWithInfo', callback: AsyncCallback): void;", - "mainBuggyLine": "6584" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6594", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'captureStartWithInfo', callback?: AsyncCallback): void;", - "mainBuggyLine": "6594" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6604", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'frameShutter', callback: AsyncCallback): void;", - "mainBuggyLine": "6604" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6614", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'frameShutter', callback?: AsyncCallback): void;", - "mainBuggyLine": "6614" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6624", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'frameShutterEnd', callback: AsyncCallback): void;", - "mainBuggyLine": "6624" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6634", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'frameShutterEnd', callback?: AsyncCallback): void;", - "mainBuggyLine": "6634" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6644", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'captureEnd', callback: AsyncCallback): void;", - "mainBuggyLine": "6644" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6654", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'captureEnd', callback?: AsyncCallback): void;", - "mainBuggyLine": "6654" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6664", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'captureReady', callback: AsyncCallback): void;", - "mainBuggyLine": "6664" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6674", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'captureReady', callback?: AsyncCallback): void;", - "mainBuggyLine": "6674" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6684", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'estimatedCaptureDuration', callback: AsyncCallback): void;", - "mainBuggyLine": "6684" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6694", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'estimatedCaptureDuration', callback?: AsyncCallback): void;", - "mainBuggyLine": "6694" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6704", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "6704" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6714", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "6714" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6737", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isQuickThumbnailSupported(): boolean;", - "mainBuggyLine": "6737" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6766", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableQuickThumbnail(enabled: boolean): void;", - "mainBuggyLine": "6766" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6778", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'quickThumbnail', callback: AsyncCallback): void;", - "mainBuggyLine": "6778" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6790", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'quickThumbnail', callback?: AsyncCallback): void;", - "mainBuggyLine": "6790" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6803", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isAutoHighQualityPhotoSupported(): boolean;", - "mainBuggyLine": "6803" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6817", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableAutoHighQualityPhoto(enabled: boolean): void;", - "mainBuggyLine": "6817" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6827", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isMovingPhotoSupported(): boolean;", - "mainBuggyLine": "6827" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6840", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableMovingPhoto(enabled: boolean): void;", - "mainBuggyLine": "6840" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6850", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface FrameShutterInfo", - "mainBuggyLine": "6850" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6858", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "captureId: number;", - "mainBuggyLine": "6858" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6866", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "timestamp: number;", - "mainBuggyLine": "6866" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6876", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface FrameShutterEndInfo", - "mainBuggyLine": "6876" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6884", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "captureId: number;", - "mainBuggyLine": "6884" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6894", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface CaptureStartInfo", - "mainBuggyLine": "6894" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6902", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "captureId: number;", - "mainBuggyLine": "6902" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6910", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "time: number;", - "mainBuggyLine": "6910" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6920", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface CaptureEndInfo", - "mainBuggyLine": "6920" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6928", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "captureId: number;", - "mainBuggyLine": "6928" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6936", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "frameCount: number;", - "mainBuggyLine": "6936" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6946", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface VideoOutput", - "mainBuggyLine": "6946" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6946", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface VideoOutput", - "mainBuggyLine": "6946" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6956", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "start(callback: AsyncCallback): void;", - "mainBuggyLine": "6956" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6967", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "start(): Promise;", - "mainBuggyLine": "6967" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6976", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stop(callback: AsyncCallback): void;", - "mainBuggyLine": "6976" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6985", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stop(): Promise;", - "mainBuggyLine": "6985" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6996", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isMirrorSupported(): boolean;", - "mainBuggyLine": "6996" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7009", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableMirror(enabled: boolean): void;", - "mainBuggyLine": "7009" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7018", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSupportedFrameRates(): Array", - "mainBuggyLine": "7018" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7030", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setFrameRate(minFps: number, maxFps: number): void", - "mainBuggyLine": "7030" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7039", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getActiveFrameRate(): FrameRateRange;", - "mainBuggyLine": "7039" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7049", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'frameStart', callback: AsyncCallback): void;", - "mainBuggyLine": "7049" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7059", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'frameStart', callback?: AsyncCallback): void;", - "mainBuggyLine": "7059" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7069", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'frameEnd', callback: AsyncCallback): void;", - "mainBuggyLine": "7069" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7079", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'frameEnd', callback?: AsyncCallback): void;", - "mainBuggyLine": "7079" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7089", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "7089" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7099", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "7099" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7109", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum MetadataObjectType", - "mainBuggyLine": "7109" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7116", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FACE_DETECTION = 0", - "mainBuggyLine": "7116" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7126", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Rect", - "mainBuggyLine": "7126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7134", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "topLeftX: number;", - "mainBuggyLine": "7134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7142", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "topLeftY: number;", - "mainBuggyLine": "7142" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7150", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "width: number;", - "mainBuggyLine": "7150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7158", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "height: number;", - "mainBuggyLine": "7158" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7168", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface MetadataObject", - "mainBuggyLine": "7168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7177", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly type: MetadataObjectType;", - "mainBuggyLine": "7177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7186", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly timestamp: number;", - "mainBuggyLine": "7186" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7195", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly boundingBox: Rect;", - "mainBuggyLine": "7195" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7205", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface MetadataOutput", - "mainBuggyLine": "7205" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7205", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface MetadataOutput", - "mainBuggyLine": "7205" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7215", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "start(callback: AsyncCallback): void;", - "mainBuggyLine": "7215" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7226", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "start(): Promise;", - "mainBuggyLine": "7226" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7235", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stop(callback: AsyncCallback): void;", - "mainBuggyLine": "7235" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7244", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stop(): Promise;", - "mainBuggyLine": "7244" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7254", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'metadataObjectsAvailable', callback: AsyncCallback>): void;", - "mainBuggyLine": "7254" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7264", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'metadataObjectsAvailable', callback?: AsyncCallback>): void;", - "mainBuggyLine": "7264" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7274", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "7274" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "7284", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "7284" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4150", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_featureDetection] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'featureDetection', featureType: SceneFeatureType, callback: AsyncCallback): void;", - "mainBuggyLine": "4150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4163", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_featureDetection] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'featureDetection', featureType: SceneFeatureType, callback?: AsyncCallback): void;", - "mainBuggyLine": "4163" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4858", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_lcdFlashStatus] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'lcdFlashStatus', callback: AsyncCallback): void;", - "mainBuggyLine": "4858" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4870", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_lcdFlashStatus] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'lcdFlashStatus', callback?: AsyncCallback): void;", - "mainBuggyLine": "4870" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4976", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "4976" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "4988", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "4988" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5000", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_focusStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'focusStateChange', callback: AsyncCallback): void;", - "mainBuggyLine": "5000" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5012", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_focusStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'focusStateChange', callback?: AsyncCallback): void;", - "mainBuggyLine": "5012" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5024", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_smoothZoomInfoAvailable] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'smoothZoomInfoAvailable', callback: AsyncCallback): void;", - "mainBuggyLine": "5024" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5036", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_smoothZoomInfoAvailable] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'smoothZoomInfoAvailable', callback?: AsyncCallback): void;", - "mainBuggyLine": "5036" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5048", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_isoInfo] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'isoInfo', callback: AsyncCallback): void;", - "mainBuggyLine": "5048" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5060", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_isoInfo] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'isoInfo', callback?: AsyncCallback): void;", - "mainBuggyLine": "5060" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5072", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_exposureInfo] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'exposureInfo', callback: AsyncCallback): void;", - "mainBuggyLine": "5072" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5084", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_exposureInfo] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'exposureInfo', callback?: AsyncCallback): void;", - "mainBuggyLine": "5084" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5096", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_apertureInfo] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'apertureInfo', callback: AsyncCallback): void;", - "mainBuggyLine": "5096" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5108", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_apertureInfo] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'apertureInfo', callback?: AsyncCallback): void;", - "mainBuggyLine": "5108" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5120", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_luminationInfo] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'luminationInfo', callback: AsyncCallback): void;", - "mainBuggyLine": "5120" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5132", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_luminationInfo] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'luminationInfo', callback?: AsyncCallback): void;", - "mainBuggyLine": "5132" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5154", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "5154" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5166", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "5166" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5178", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_focusStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'focusStateChange', callback: AsyncCallback): void;", - "mainBuggyLine": "5178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5190", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_focusStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'focusStateChange', callback?: AsyncCallback): void;", - "mainBuggyLine": "5190" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5202", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_smoothZoomInfoAvailable] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'smoothZoomInfoAvailable', callback: AsyncCallback): void;", - "mainBuggyLine": "5202" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5214", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_smoothZoomInfoAvailable] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'smoothZoomInfoAvailable', callback?: AsyncCallback): void;", - "mainBuggyLine": "5214" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5226", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_isoInfo] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'isoInfo', callback: AsyncCallback): void;", - "mainBuggyLine": "5226" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5238", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_isoInfo] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'isoInfo', callback?: AsyncCallback): void;", - "mainBuggyLine": "5238" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5250", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_exposureInfo] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'exposureInfo', callback: AsyncCallback): void;", - "mainBuggyLine": "5250" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5262", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_exposureInfo] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'exposureInfo', callback?: AsyncCallback): void;", - "mainBuggyLine": "5262" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5274", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_apertureInfo] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'apertureInfo', callback: AsyncCallback): void;", - "mainBuggyLine": "5274" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5286", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_apertureInfo] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'apertureInfo', callback?: AsyncCallback): void;", - "mainBuggyLine": "5286" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5298", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_luminationInfo] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'luminationInfo', callback: AsyncCallback): void;", - "mainBuggyLine": "5298" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5310", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_luminationInfo] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'luminationInfo', callback?: AsyncCallback): void;", - "mainBuggyLine": "5310" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5387", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "5387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5399", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "5399" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5411", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_focusStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'focusStateChange', callback: AsyncCallback): void;", - "mainBuggyLine": "5411" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5423", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_focusStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'focusStateChange', callback?: AsyncCallback): void;", - "mainBuggyLine": "5423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5435", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_smoothZoomInfoAvailable] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'smoothZoomInfoAvailable', callback: AsyncCallback): void;", - "mainBuggyLine": "5435" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5447", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_smoothZoomInfoAvailable] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'smoothZoomInfoAvailable', callback?: AsyncCallback): void;", - "mainBuggyLine": "5447" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5484", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_slowMotionStatus] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'slowMotionStatus', callback: AsyncCallback): void;", - "mainBuggyLine": "5484" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5496", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_slowMotionStatus] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'slowMotionStatus', callback?: AsyncCallback): void;", - "mainBuggyLine": "5496" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5518", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "5518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5530", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "5530" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5542", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_focusStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'focusStateChange', callback: AsyncCallback): void;", - "mainBuggyLine": "5542" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5554", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_focusStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'focusStateChange', callback?: AsyncCallback): void;", - "mainBuggyLine": "5554" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5576", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "5576" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5588", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "5588" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5600", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_focusStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'focusStateChange', callback: AsyncCallback): void;", - "mainBuggyLine": "5600" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5612", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_focusStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'focusStateChange', callback?: AsyncCallback): void;", - "mainBuggyLine": "5612" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5624", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_smoothZoomInfoAvailable] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'smoothZoomInfoAvailable', callback: AsyncCallback): void;", - "mainBuggyLine": "5624" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5636", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_smoothZoomInfoAvailable] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'smoothZoomInfoAvailable', callback?: AsyncCallback): void;", - "mainBuggyLine": "5636" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5658", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "5658" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5670", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "5670" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5682", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_focusStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'focusStateChange', callback: AsyncCallback): void;", - "mainBuggyLine": "5682" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5694", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_focusStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'focusStateChange', callback?: AsyncCallback): void;", - "mainBuggyLine": "5694" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5706", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_smoothZoomInfoAvailable] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'smoothZoomInfoAvailable', callback: AsyncCallback): void;", - "mainBuggyLine": "5706" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5718", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_smoothZoomInfoAvailable] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'smoothZoomInfoAvailable', callback?: AsyncCallback): void;", - "mainBuggyLine": "5718" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5749", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "5749" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5759", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "5759" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5769", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_focusStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'focusStateChange', callback: AsyncCallback): void;", - "mainBuggyLine": "5769" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "5779", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_focusStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'focusStateChange', callback?: AsyncCallback): void;", - "mainBuggyLine": "5779" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6531", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_photoAssetAvailable] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'photoAssetAvailable', callback: AsyncCallback): void;", - "mainBuggyLine": "6531" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6541", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_photoAssetAvailable] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'photoAssetAvailable', callback?: AsyncCallback): void;", - "mainBuggyLine": "6541" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6624", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_frameShutterEnd] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'frameShutterEnd', callback: AsyncCallback): void;", - "mainBuggyLine": "6624" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6634", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_frameShutterEnd] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'frameShutterEnd', callback?: AsyncCallback): void;", - "mainBuggyLine": "6634" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6664", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_captureReady] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'captureReady', callback: AsyncCallback): void;", - "mainBuggyLine": "6664" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6674", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_captureReady] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'captureReady', callback?: AsyncCallback): void;", - "mainBuggyLine": "6674" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6684", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_estimatedCaptureDuration] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'estimatedCaptureDuration', callback: AsyncCallback): void;", - "mainBuggyLine": "6684" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.camera.d.ts", - "codeContextStaerLine": "6694", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_estimatedCaptureDuration] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'estimatedCaptureDuration', callback?: AsyncCallback): void;", - "mainBuggyLine": "6694" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.drm.d.ts", - "codeContextStaerLine": "812", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "getConfigurationString(configName: string): string;", - "mainBuggyLine": "812" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.drm.d.ts", - "codeContextStaerLine": "1273", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_keyRequired] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'keyRequired', callback: (eventInfo: EventInfo) => void): void;", - "mainBuggyLine": "1273" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.drm.d.ts", - "codeContextStaerLine": "1298", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_keyRequired] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'keyRequired', callback?: (eventInfo: EventInfo) => void): void;", - "mainBuggyLine": "1298" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.drm.d.ts", - "codeContextStaerLine": "1323", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_keyExpired] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'keyExpired', callback: (eventInfo: EventInfo) => void): void;", - "mainBuggyLine": "1323" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.drm.d.ts", - "codeContextStaerLine": "1348", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_keyExpired] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'keyExpired', callback?: (eventInfo: EventInfo) => void): void;", - "mainBuggyLine": "1348" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.drm.d.ts", - "codeContextStaerLine": "1373", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_vendorDefined] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'vendorDefined', callback: (eventInfo: EventInfo) => void): void;", - "mainBuggyLine": "1373" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.drm.d.ts", - "codeContextStaerLine": "1398", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_vendorDefined] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'vendorDefined', callback?: (eventInfo: EventInfo) => void): void;", - "mainBuggyLine": "1398" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.drm.d.ts", - "codeContextStaerLine": "1423", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_expirationUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'expirationUpdate', callback: (eventInfo: EventInfo) => void): void;", - "mainBuggyLine": "1423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.drm.d.ts", - "codeContextStaerLine": "1448", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_expirationUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'expirationUpdate', callback?: (eventInfo: EventInfo) => void): void;", - "mainBuggyLine": "1448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.drm.d.ts", - "codeContextStaerLine": "1473", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_keysChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'keysChange', callback: (keyInfo: KeysInfo[], newKeyAvailable: boolean) => void): void;", - "mainBuggyLine": "1473" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.drm.d.ts", - "codeContextStaerLine": "1498", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_keysChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'keysChange', callback?: (keyInfo: KeysInfo[], newKeyAvailable: boolean) => void): void;", - "mainBuggyLine": "1498" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "416", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum ResolutionQuality", - "mainBuggyLine": "416" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "424", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LOW = 1", - "mainBuggyLine": "424" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "433", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MEDIUM = 2", - "mainBuggyLine": "433" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "442", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HIGH = 3", - "mainBuggyLine": "442" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "568", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum PropertyKey", - "mainBuggyLine": "568" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "582", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "BITS_PER_SAMPLE = 'BitsPerSample'", - "mainBuggyLine": "582" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "597", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ORIENTATION = 'Orientation'", - "mainBuggyLine": "597" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "612", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "IMAGE_LENGTH = 'ImageLength'", - "mainBuggyLine": "612" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "627", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "IMAGE_WIDTH = 'ImageWidth'", - "mainBuggyLine": "627" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "642", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_LATITUDE = 'GPSLatitude'", - "mainBuggyLine": "642" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "657", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_LONGITUDE = 'GPSLongitude'", - "mainBuggyLine": "657" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "672", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_LATITUDE_REF = 'GPSLatitudeRef'", - "mainBuggyLine": "672" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "687", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_LONGITUDE_REF = 'GPSLongitudeRef'", - "mainBuggyLine": "687" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "702", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DATE_TIME_ORIGINAL = 'DateTimeOriginal'", - "mainBuggyLine": "702" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "717", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EXPOSURE_TIME = 'ExposureTime'", - "mainBuggyLine": "717" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "732", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCENE_TYPE = 'SceneType'", - "mainBuggyLine": "732" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "747", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ISO_SPEED_RATINGS = 'ISOSpeedRatings'", - "mainBuggyLine": "747" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "762", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "F_NUMBER = 'FNumber'", - "mainBuggyLine": "762" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "770", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DATE_TIME = 'DateTime'", - "mainBuggyLine": "770" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "778", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_TIME_STAMP = 'GPSTimeStamp'", - "mainBuggyLine": "778" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "786", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_DATE_STAMP = 'GPSDateStamp'", - "mainBuggyLine": "786" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "794", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "IMAGE_DESCRIPTION = 'ImageDescription'", - "mainBuggyLine": "794" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "802", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MAKE = 'Make'", - "mainBuggyLine": "802" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "810", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MODEL = 'Model'", - "mainBuggyLine": "810" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "818", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHOTO_MODE = 'PhotoMode'", - "mainBuggyLine": "818" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "826", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSITIVITY_TYPE = 'SensitivityType'", - "mainBuggyLine": "826" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "834", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STANDARD_OUTPUT_SENSITIVITY = 'StandardOutputSensitivity'", - "mainBuggyLine": "834" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "842", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RECOMMENDED_EXPOSURE_INDEX = 'RecommendedExposureIndex'", - "mainBuggyLine": "842" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "850", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ISO_SPEED = 'ISOSpeedRatings'", - "mainBuggyLine": "850" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "858", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "APERTURE_VALUE = 'ApertureValue'", - "mainBuggyLine": "858" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "866", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EXPOSURE_BIAS_VALUE = 'ExposureBiasValue'", - "mainBuggyLine": "866" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "874", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "METERING_MODE = 'MeteringMode'", - "mainBuggyLine": "874" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "882", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LIGHT_SOURCE = 'LightSource'", - "mainBuggyLine": "882" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "890", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FLASH = 'Flash'", - "mainBuggyLine": "890" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "898", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FOCAL_LENGTH = 'FocalLength'", - "mainBuggyLine": "898" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "906", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "USER_COMMENT = 'UserComment'", - "mainBuggyLine": "906" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "914", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PIXEL_X_DIMENSION = 'PixelXDimension'", - "mainBuggyLine": "914" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "922", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PIXEL_Y_DIMENSION = 'PixelYDimension'", - "mainBuggyLine": "922" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "930", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WHITE_BALANCE = 'WhiteBalance'", - "mainBuggyLine": "930" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "938", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FOCAL_LENGTH_IN_35_MM_FILM = 'FocalLengthIn35mmFilm'", - "mainBuggyLine": "938" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "946", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAPTURE_MODE = 'HwMnoteCaptureMode'", - "mainBuggyLine": "946" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "954", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHYSICAL_APERTURE = 'HwMnotePhysicalAperture'", - "mainBuggyLine": "954" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "963", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ROLL_ANGLE = 'HwMnoteRollAngle'", - "mainBuggyLine": "963" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "972", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PITCH_ANGLE = 'HwMnotePitchAngle'", - "mainBuggyLine": "972" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "981", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCENE_FOOD_CONF = 'HwMnoteSceneFoodConf'", - "mainBuggyLine": "981" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "990", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCENE_STAGE_CONF = 'HwMnoteSceneStageConf'", - "mainBuggyLine": "990" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "999", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCENE_BLUE_SKY_CONF = 'HwMnoteSceneBlueSkyConf'", - "mainBuggyLine": "999" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1008", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCENE_GREEN_PLANT_CONF = 'HwMnoteSceneGreenPlantConf'", - "mainBuggyLine": "1008" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1017", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCENE_BEACH_CONF = 'HwMnoteSceneBeachConf'", - "mainBuggyLine": "1017" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1026", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCENE_SNOW_CONF = 'HwMnoteSceneSnowConf'", - "mainBuggyLine": "1026" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1035", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCENE_SUNSET_CONF = 'HwMnoteSceneSunsetConf'", - "mainBuggyLine": "1035" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1044", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCENE_FLOWERS_CONF = 'HwMnoteSceneFlowersConf'", - "mainBuggyLine": "1044" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1053", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCENE_NIGHT_CONF = 'HwMnoteSceneNightConf'", - "mainBuggyLine": "1053" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1062", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCENE_TEXT_CONF = 'HwMnoteSceneTextConf'", - "mainBuggyLine": "1062" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1071", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FACE_COUNT = 'HwMnoteFaceCount'", - "mainBuggyLine": "1071" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1080", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FOCUS_MODE = 'HwMnoteFocusMode'", - "mainBuggyLine": "1080" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1089", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMPRESSION = 'Compression'", - "mainBuggyLine": "1089" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1098", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHOTOMETRIC_INTERPRETATION = 'PhotometricInterpretation'", - "mainBuggyLine": "1098" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1107", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STRIP_OFFSETS = 'StripOffsets'", - "mainBuggyLine": "1107" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1116", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SAMPLES_PER_PIXEL = 'SamplesPerPixel'", - "mainBuggyLine": "1116" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1125", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ROWS_PER_STRIP = 'RowsPerStrip'", - "mainBuggyLine": "1125" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STRIP_BYTE_COUNTS = 'StripByteCounts'", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1143", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "X_RESOLUTION = 'XResolution'", - "mainBuggyLine": "1143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1152", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "Y_RESOLUTION = 'YResolution'", - "mainBuggyLine": "1152" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1161", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PLANAR_CONFIGURATION = 'PlanarConfiguration'", - "mainBuggyLine": "1161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1170", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RESOLUTION_UNIT = 'ResolutionUnit'", - "mainBuggyLine": "1170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1179", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TRANSFER_FUNCTION = 'TransferFunction'", - "mainBuggyLine": "1179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1188", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SOFTWARE = 'Software'", - "mainBuggyLine": "1188" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1197", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ARTIST = 'Artist'", - "mainBuggyLine": "1197" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1206", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WHITE_POINT = 'WhitePoint'", - "mainBuggyLine": "1206" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1215", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PRIMARY_CHROMATICITIES = 'PrimaryChromaticities'", - "mainBuggyLine": "1215" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1224", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "YCBCR_COEFFICIENTS = 'YCbCrCoefficients'", - "mainBuggyLine": "1224" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1233", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "YCBCR_SUB_SAMPLING = 'YCbCrSubSampling'", - "mainBuggyLine": "1233" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1242", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "YCBCR_POSITIONING = 'YCbCrPositioning'", - "mainBuggyLine": "1242" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1251", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "REFERENCE_BLACK_WHITE = 'ReferenceBlackWhite'", - "mainBuggyLine": "1251" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1260", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COPYRIGHT = 'Copyright'", - "mainBuggyLine": "1260" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1269", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "JPEG_INTERCHANGE_FORMAT = 'JPEGInterchangeFormat'", - "mainBuggyLine": "1269" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1278", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "JPEG_INTERCHANGE_FORMAT_LENGTH = 'JPEGInterchangeFormatLength'", - "mainBuggyLine": "1278" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1287", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EXPOSURE_PROGRAM = 'ExposureProgram'", - "mainBuggyLine": "1287" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1296", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SPECTRAL_SENSITIVITY = 'SpectralSensitivity'", - "mainBuggyLine": "1296" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1305", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OECF = 'OECF'", - "mainBuggyLine": "1305" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1314", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EXIF_VERSION = 'ExifVersion'", - "mainBuggyLine": "1314" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1323", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DATE_TIME_DIGITIZED = 'DateTimeDigitized'", - "mainBuggyLine": "1323" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1332", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMPONENTS_CONFIGURATION = 'ComponentsConfiguration'", - "mainBuggyLine": "1332" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1341", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SHUTTER_SPEED = 'ShutterSpeedValue'", - "mainBuggyLine": "1341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1350", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "BRIGHTNESS_VALUE = 'BrightnessValue'", - "mainBuggyLine": "1350" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1359", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MAX_APERTURE_VALUE = 'MaxApertureValue'", - "mainBuggyLine": "1359" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1368", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SUBJECT_DISTANCE = 'SubjectDistance'", - "mainBuggyLine": "1368" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1377", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SUBJECT_AREA = 'SubjectArea'", - "mainBuggyLine": "1377" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1386", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MAKER_NOTE = 'MakerNote'", - "mainBuggyLine": "1386" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1395", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SUBSEC_TIME = 'SubsecTime'", - "mainBuggyLine": "1395" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1404", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SUBSEC_TIME_ORIGINAL = 'SubsecTimeOriginal'", - "mainBuggyLine": "1404" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1413", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SUBSEC_TIME_DIGITIZED = 'SubsecTimeDigitized'", - "mainBuggyLine": "1413" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1422", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FLASHPIX_VERSION = 'FlashpixVersion'", - "mainBuggyLine": "1422" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1431", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COLOR_SPACE = 'ColorSpace'", - "mainBuggyLine": "1431" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1440", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RELATED_SOUND_FILE = 'RelatedSoundFile'", - "mainBuggyLine": "1440" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1449", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FLASH_ENERGY = 'FlashEnergy'", - "mainBuggyLine": "1449" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1458", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SPATIAL_FREQUENCY_RESPONSE = 'SpatialFrequencyResponse'", - "mainBuggyLine": "1458" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1467", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FOCAL_PLANE_X_RESOLUTION = 'FocalPlaneXResolution'", - "mainBuggyLine": "1467" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1476", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FOCAL_PLANE_Y_RESOLUTION = 'FocalPlaneYResolution'", - "mainBuggyLine": "1476" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1485", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FOCAL_PLANE_RESOLUTION_UNIT = 'FocalPlaneResolutionUnit'", - "mainBuggyLine": "1485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1494", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SUBJECT_LOCATION = 'SubjectLocation'", - "mainBuggyLine": "1494" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1503", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EXPOSURE_INDEX = 'ExposureIndex'", - "mainBuggyLine": "1503" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1512", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSING_METHOD = 'SensingMethod'", - "mainBuggyLine": "1512" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1521", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FILE_SOURCE = 'FileSource'", - "mainBuggyLine": "1521" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1530", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CFA_PATTERN = 'CFAPattern'", - "mainBuggyLine": "1530" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1539", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CUSTOM_RENDERED = 'CustomRendered'", - "mainBuggyLine": "1539" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1548", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EXPOSURE_MODE = 'ExposureMode'", - "mainBuggyLine": "1548" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1557", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DIGITAL_ZOOM_RATIO = 'DigitalZoomRatio'", - "mainBuggyLine": "1557" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1566", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCENE_CAPTURE_TYPE = 'SceneCaptureType'", - "mainBuggyLine": "1566" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1575", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GAIN_CONTROL = 'GainControl'", - "mainBuggyLine": "1575" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1584", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CONTRAST = 'Contrast'", - "mainBuggyLine": "1584" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1593", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SATURATION = 'Saturation'", - "mainBuggyLine": "1593" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1602", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SHARPNESS = 'Sharpness'", - "mainBuggyLine": "1602" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1611", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_SETTING_DESCRIPTION = 'DeviceSettingDescription'", - "mainBuggyLine": "1611" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1620", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SUBJECT_DISTANCE_RANGE = 'SubjectDistanceRange'", - "mainBuggyLine": "1620" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1629", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "IMAGE_UNIQUE_ID = 'ImageUniqueID'", - "mainBuggyLine": "1629" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1638", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_VERSION_ID = 'GPSVersionID'", - "mainBuggyLine": "1638" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1647", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_ALTITUDE_REF = 'GPSAltitudeRef'", - "mainBuggyLine": "1647" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1656", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_ALTITUDE = 'GPSAltitude'", - "mainBuggyLine": "1656" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1665", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_SATELLITES = 'GPSSatellites'", - "mainBuggyLine": "1665" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1674", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_STATUS = 'GPSStatus'", - "mainBuggyLine": "1674" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1683", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_MEASURE_MODE = 'GPSMeasureMode'", - "mainBuggyLine": "1683" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1692", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_DOP = 'GPSDOP'", - "mainBuggyLine": "1692" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1701", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_SPEED_REF = 'GPSSpeedRef'", - "mainBuggyLine": "1701" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1710", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_SPEED = 'GPSSpeed'", - "mainBuggyLine": "1710" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1719", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_TRACK_REF = 'GPSTrackRef'", - "mainBuggyLine": "1719" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1728", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_TRACK = 'GPSTrack'", - "mainBuggyLine": "1728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1737", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_IMG_DIRECTION_REF = 'GPSImgDirectionRef'", - "mainBuggyLine": "1737" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1746", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_IMG_DIRECTION = 'GPSImgDirection'", - "mainBuggyLine": "1746" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1755", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_MAP_DATUM = 'GPSMapDatum'", - "mainBuggyLine": "1755" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1764", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_DEST_LATITUDE_REF = 'GPSDestLatitudeRef'", - "mainBuggyLine": "1764" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1773", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_DEST_LATITUDE = 'GPSDestLatitude'", - "mainBuggyLine": "1773" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1782", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_DEST_LONGITUDE_REF = 'GPSDestLongitudeRef'", - "mainBuggyLine": "1782" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1791", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_DEST_LONGITUDE = 'GPSDestLongitude'", - "mainBuggyLine": "1791" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1800", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_DEST_BEARING_REF = 'GPSDestBearingRef'", - "mainBuggyLine": "1800" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1809", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_DEST_BEARING = 'GPSDestBearing'", - "mainBuggyLine": "1809" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1818", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_DEST_DISTANCE_REF = 'GPSDestDistanceRef'", - "mainBuggyLine": "1818" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1827", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_DEST_DISTANCE = 'GPSDestDistance'", - "mainBuggyLine": "1827" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1836", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_PROCESSING_METHOD = 'GPSProcessingMethod'", - "mainBuggyLine": "1836" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1845", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_AREA_INFORMATION = 'GPSAreaInformation'", - "mainBuggyLine": "1845" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1854", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_DIFFERENTIAL = 'GPSDifferential'", - "mainBuggyLine": "1854" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1863", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "BODY_SERIAL_NUMBER = 'BodySerialNumber'", - "mainBuggyLine": "1863" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1872", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CAMERA_OWNER_NAME = 'CameraOwnerName'", - "mainBuggyLine": "1872" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1881", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMPOSITE_IMAGE = 'CompositeImage'", - "mainBuggyLine": "1881" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1890", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMPRESSED_BITS_PER_PIXEL = 'CompressedBitsPerPixel'", - "mainBuggyLine": "1890" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1899", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DNG_VERSION = 'DNGVersion'", - "mainBuggyLine": "1899" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1908", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEFAULT_CROP_SIZE = 'DefaultCropSize'", - "mainBuggyLine": "1908" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1917", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GAMMA = 'Gamma'", - "mainBuggyLine": "1917" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1926", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ISO_SPEED_LATITUDE_YYY = 'ISOSpeedLatitudeyyy'", - "mainBuggyLine": "1926" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1935", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ISO_SPEED_LATITUDE_ZZZ = 'ISOSpeedLatitudezzz'", - "mainBuggyLine": "1935" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1944", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LENS_MAKE = 'LensMake'", - "mainBuggyLine": "1944" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1953", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LENS_MODEL = 'LensModel'", - "mainBuggyLine": "1953" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1962", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LENS_SERIAL_NUMBER = 'LensSerialNumber'", - "mainBuggyLine": "1962" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1971", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LENS_SPECIFICATION = 'LensSpecification'", - "mainBuggyLine": "1971" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1980", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NEW_SUBFILE_TYPE = 'NewSubfileType'", - "mainBuggyLine": "1980" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1989", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OFFSET_TIME = 'OffsetTime'", - "mainBuggyLine": "1989" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "1998", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OFFSET_TIME_DIGITIZED = 'OffsetTimeDigitized'", - "mainBuggyLine": "1998" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2007", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OFFSET_TIME_ORIGINAL = 'OffsetTimeOriginal'", - "mainBuggyLine": "2007" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2016", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SOURCE_EXPOSURE_TIMES_OF_COMPOSITE_IMAGE = 'SourceExposureTimesOfCompositeImage'", - "mainBuggyLine": "2016" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2025", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SOURCE_IMAGE_NUMBER_OF_COMPOSITE_IMAGE = 'SourceImageNumberOfCompositeImage'", - "mainBuggyLine": "2025" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2034", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SUBFILE_TYPE = 'SubfileType'", - "mainBuggyLine": "2034" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2043", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GPS_H_POSITIONING_ERROR = 'GPSHPositioningError'", - "mainBuggyLine": "2043" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2052", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHOTOGRAPHIC_SENSITIVITY = 'PhotographicSensitivity'", - "mainBuggyLine": "2052" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2061", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "BURST_NUMBER = 'HwMnoteBurstNumber'", - "mainBuggyLine": "2061" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2070", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FACE_CONF = 'HwMnoteFaceConf'", - "mainBuggyLine": "2070" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2079", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FACE_LEYE_CENTER = 'HwMnoteFaceLeyeCenter'", - "mainBuggyLine": "2079" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2088", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FACE_MOUTH_CENTER = 'HwMnoteFaceMouthCenter'", - "mainBuggyLine": "2088" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2097", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FACE_POINTER = 'HwMnoteFacePointer'", - "mainBuggyLine": "2097" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2106", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FACE_RECT = 'HwMnoteFaceRect'", - "mainBuggyLine": "2106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2115", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FACE_REYE_CENTER = 'HwMnoteFaceReyeCenter'", - "mainBuggyLine": "2115" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2124", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FACE_SMILE_SCORE = 'HwMnoteFaceSmileScore'", - "mainBuggyLine": "2124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2133", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FACE_VERSION = 'HwMnoteFaceVersion'", - "mainBuggyLine": "2133" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2142", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FRONT_CAMERA = 'HwMnoteFrontCamera'", - "mainBuggyLine": "2142" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2151", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCENE_POINTER = 'HwMnoteScenePointer'", - "mainBuggyLine": "2151" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2160", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCENE_VERSION = 'HwMnoteSceneVersion'", - "mainBuggyLine": "2160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2170", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GIF_LOOP_COUNT = 'GIFLoopCount'", - "mainBuggyLine": "2170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2180", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum ImageFormat", - "mainBuggyLine": "2180" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2187", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "YCBCR_422_SP = 1000", - "mainBuggyLine": "2187" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2195", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "JPEG = 2000", - "mainBuggyLine": "2195" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2369", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum DecodingDynamicRange", - "mainBuggyLine": "2369" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2376", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUTO = 0", - "mainBuggyLine": "2376" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2384", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SDR = 1", - "mainBuggyLine": "2384" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2392", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HDR = 2", - "mainBuggyLine": "2392" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2402", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum PackingDynamicRange", - "mainBuggyLine": "2402" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2409", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUTO = 0", - "mainBuggyLine": "2409" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2417", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SDR = 1", - "mainBuggyLine": "2417" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2527", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum ComponentType", - "mainBuggyLine": "2527" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2534", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "YUV_Y = 1", - "mainBuggyLine": "2534" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2542", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "YUV_U = 2", - "mainBuggyLine": "2542" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2550", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "YUV_V = 3", - "mainBuggyLine": "2550" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "2558", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "JPEG = 4", - "mainBuggyLine": "2558" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3043", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "mimeType: string;", - "mainBuggyLine": "3043" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3052", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isHdr: boolean;", - "mainBuggyLine": "3052" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3079", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface PackingOption", - "mainBuggyLine": "3079" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3104", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "format: string;", - "mainBuggyLine": "3104" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3130", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "quality: number;", - "mainBuggyLine": "3130" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3159", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bufferSize?: number;", - "mainBuggyLine": "3159" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3168", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "desiredDynamicRange?: PackingDynamicRange;", - "mainBuggyLine": "3168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3190", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface GetImagePropertyOptions", - "mainBuggyLine": "3190" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3210", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "index?: number;", - "mainBuggyLine": "3210" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3231", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "defaultValue?: string;", - "mainBuggyLine": "3231" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3242", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ImagePropertyOptions", - "mainBuggyLine": "3242" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3251", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "index?: number;", - "mainBuggyLine": "3251" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3261", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "defaultValue?: string;", - "mainBuggyLine": "3261" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3599", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "desiredColorSpace?: colorSpaceManager.ColorSpaceManager;", - "mainBuggyLine": "3599" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3608", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "desiredDynamicRange?: DecodingDynamicRange;", - "mainBuggyLine": "3608" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3618", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "resolutionQuality?: ResolutionQuality;", - "mainBuggyLine": "3618" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3628", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Component", - "mainBuggyLine": "3628" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3636", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly componentType: ComponentType;", - "mainBuggyLine": "3636" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3645", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly rowStride: number;", - "mainBuggyLine": "3645" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3654", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly pixelStride: number;", - "mainBuggyLine": "3654" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3663", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly byteBuffer: ArrayBuffer;", - "mainBuggyLine": "3663" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "3744", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "srcPixelFormat?: PixelMapFormat;", - "mainBuggyLine": "3744" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4054", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createPixelMap(colors: ArrayBuffer, options: InitializationOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "4054" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4075", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createPixelMap(colors: ArrayBuffer, options: InitializationOptions): Promise;", - "mainBuggyLine": "4075" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4089", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createPixelMapSync(colors: ArrayBuffer, options: InitializationOptions): PixelMap;", - "mainBuggyLine": "4089" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4102", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createPixelMapSync(options: InitializationOptions): PixelMap;", - "mainBuggyLine": "4102" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4120", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createPremultipliedPixelMap(src: PixelMap, dst: PixelMap, callback: AsyncCallback): void;", - "mainBuggyLine": "4120" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4138", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createPremultipliedPixelMap(src: PixelMap, dst: PixelMap): Promise;", - "mainBuggyLine": "4138" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4156", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createUnpremultipliedPixelMap(src: PixelMap, dst: PixelMap, callback: AsyncCallback): void;", - "mainBuggyLine": "4156" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4174", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createUnpremultipliedPixelMap(src: PixelMap, dst: PixelMap): Promise;", - "mainBuggyLine": "4174" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4193", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createPixelMapFromParcel(sequence: rpc.MessageSequence): PixelMap;", - "mainBuggyLine": "4193" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4207", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createPixelMapFromSurface(surfaceId: string, region: Region): Promise;", - "mainBuggyLine": "4207" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4222", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createPixelMapFromSurfaceSync(surfaceId: string, region: Region): PixelMap;", - "mainBuggyLine": "4222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4251", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createImageSource(uri: string): ImageSource;", - "mainBuggyLine": "4251" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4324", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createImageSource(fd: number): ImageSource;", - "mainBuggyLine": "4324" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4465", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createImageSource(rawfile: resourceManager.RawFileDescriptor, options?: SourceOptions): ImageSource;", - "mainBuggyLine": "4465" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4484", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function CreateIncrementalSource(buf: ArrayBuffer): ImageSource;", - "mainBuggyLine": "4484" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4505", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function CreateIncrementalSource(buf: ArrayBuffer, options?: SourceOptions): ImageSource;", - "mainBuggyLine": "4505" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4531", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createImagePacker(): ImagePacker;", - "mainBuggyLine": "4531" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4547", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createImageReceiver(width: number, height: number, format: number, capacity: number): ImageReceiver;", - "mainBuggyLine": "4547" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4561", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createImageReceiver(size: Size, format: ImageFormat, capacity: number): ImageReceiver;", - "mainBuggyLine": "4561" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4577", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createImageCreator(width: number, height: number, format: number, capacity: number): ImageCreator;", - "mainBuggyLine": "4577" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4591", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createImageCreator(size: Size, format: ImageFormat, capacity: number): ImageCreator;", - "mainBuggyLine": "4591" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "4858", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readPixelsSync(area: PositionArea): void;", - "mainBuggyLine": "4858" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "5062", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "writeBufferToPixelsSync(src: ArrayBuffer): void;", - "mainBuggyLine": "5062" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "5072", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "toSdr(): Promise;", - "mainBuggyLine": "5072" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "5363", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "opacitySync(rate: number): void;", - "mainBuggyLine": "5363" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "5447", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createAlphaPixelmapSync(): PixelMap;", - "mainBuggyLine": "5447" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "5549", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "scaleSync(x: number, y: number): void;", - "mainBuggyLine": "5549" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "5652", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "translateSync(x: number, y: number): void;", - "mainBuggyLine": "5652" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "5746", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "rotateSync(angle: number): void;", - "mainBuggyLine": "5746" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "5849", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "flipSync(horizontal: boolean, vertical: boolean): void;", - "mainBuggyLine": "5849" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "5943", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "cropSync(region: Region): void;", - "mainBuggyLine": "5943" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "5966", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getColorSpace(): colorSpaceManager.ColorSpaceManager;", - "mainBuggyLine": "5966" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "5977", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "marshalling(sequence: rpc.MessageSequence): void;", - "mainBuggyLine": "5977" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "5990", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "unmarshalling(sequence: rpc.MessageSequence): Promise;", - "mainBuggyLine": "5990" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6019", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setColorSpace(colorSpace: colorSpaceManager.ColorSpaceManager): void;", - "mainBuggyLine": "6019" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6029", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly isStrideAlignment: boolean;", - "mainBuggyLine": "6029" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6048", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "applyColorSpace(targetColorSpace: colorSpaceManager.ColorSpaceManager, callback: AsyncCallback): void;", - "mainBuggyLine": "6048" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6067", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "applyColorSpace(targetColorSpace: colorSpaceManager.ColorSpaceManager): Promise;", - "mainBuggyLine": "6067" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6306", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getImageInfoSync(index?: number): ImageInfo;", - "mainBuggyLine": "6306" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6441", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createPixelMapSync(options?: DecodingOptions): PixelMap;", - "mainBuggyLine": "6441" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6470", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createPixelMapList(options?: DecodingOptions): Promise>;", - "mainBuggyLine": "6470" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6497", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createPixelMapList(callback: AsyncCallback>): void;", - "mainBuggyLine": "6497" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6526", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createPixelMapList(options: DecodingOptions, callback: AsyncCallback>): void;", - "mainBuggyLine": "6526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6547", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getDelayTimeList(): Promise>;", - "mainBuggyLine": "6547" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6568", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getDelayTimeList(callback: AsyncCallback>): void;", - "mainBuggyLine": "6568" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6582", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getDisposalTypeList(): Promise>;", - "mainBuggyLine": "6582" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6602", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFrameCount(): Promise;", - "mainBuggyLine": "6602" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6622", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFrameCount(callback: AsyncCallback): void;", - "mainBuggyLine": "6622" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6648", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getImageProperty(key: PropertyKey, options?: ImagePropertyOptions): Promise;", - "mainBuggyLine": "6648" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6675", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getImageProperty(key: string, options?: GetImagePropertyOptions): Promise;", - "mainBuggyLine": "6675" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6700", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getImageProperty(key: string, callback: AsyncCallback): void;", - "mainBuggyLine": "6700" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6727", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getImageProperty(key: string, options: GetImagePropertyOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "6727" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6745", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getImageProperties(key: Array): Promise>;", - "mainBuggyLine": "6745" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6763", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "modifyImageProperty(key: PropertyKey, value: string): Promise;", - "mainBuggyLine": "6763" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6790", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "modifyImageProperty(key: string, value: string): Promise;", - "mainBuggyLine": "6790" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6817", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "modifyImageProperty(key: string, value: string, callback: AsyncCallback): void;", - "mainBuggyLine": "6817" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6835", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "modifyImageProperties(records: Record): Promise;", - "mainBuggyLine": "6835" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6872", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "updateData(buf: ArrayBuffer, isFinished: boolean, offset: number, length: number): Promise;", - "mainBuggyLine": "6872" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6909", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "updateData(\r\n buf: ArrayBuffer,\r\n isFinished: boolean,\r\n offset: number,\r\n length: number,\r\n callback: AsyncCallback\r\n ): void;", - "mainBuggyLine": "6909" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6932", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(callback: AsyncCallback): void;", - "mainBuggyLine": "6932" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6949", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(): Promise;", - "mainBuggyLine": "6949" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6966", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly supportedFormats: Array;", - "mainBuggyLine": "6966" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "6993", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ImagePacker", - "mainBuggyLine": "6993" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7024", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "packing(source: ImageSource, option: PackingOption, callback: AsyncCallback): void;", - "mainBuggyLine": "7024" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7056", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "packing(source: ImageSource, option: PackingOption): Promise;", - "mainBuggyLine": "7056" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7088", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "packing(source: PixelMap, option: PackingOption, callback: AsyncCallback): void;", - "mainBuggyLine": "7088" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7120", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "packing(source: PixelMap, option: PackingOption): Promise;", - "mainBuggyLine": "7120" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7133", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "packToFile(source: ImageSource, fd: number, options: PackingOption, callback: AsyncCallback): void;", - "mainBuggyLine": "7133" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7146", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "packToFile(source: ImageSource, fd: number, options: PackingOption): Promise;", - "mainBuggyLine": "7146" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7159", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "packToFile(source: PixelMap, fd: number, options: PackingOption, callback: AsyncCallback): void;", - "mainBuggyLine": "7159" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7172", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "packToFile(source: PixelMap, fd: number, options: PackingOption): Promise;", - "mainBuggyLine": "7172" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7189", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(callback: AsyncCallback): void;", - "mainBuggyLine": "7189" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7206", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(): Promise;", - "mainBuggyLine": "7206" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7223", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly supportedFormats: Array;", - "mainBuggyLine": "7223" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7233", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Image", - "mainBuggyLine": "7233" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7241", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "clipRect: Region;", - "mainBuggyLine": "7241" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7250", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly size: Size;", - "mainBuggyLine": "7250" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7259", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly format: number;", - "mainBuggyLine": "7259" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7268", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly timestamp: number;", - "mainBuggyLine": "7268" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7278", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getComponent(componentType: ComponentType, callback: AsyncCallback): void;", - "mainBuggyLine": "7278" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7288", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getComponent(componentType: ComponentType): Promise;", - "mainBuggyLine": "7288" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7297", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(callback: AsyncCallback): void;", - "mainBuggyLine": "7297" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7306", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(): Promise;", - "mainBuggyLine": "7306" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7316", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ImageReceiver", - "mainBuggyLine": "7316" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7324", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly size: Size;", - "mainBuggyLine": "7324" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7333", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly capacity: number;", - "mainBuggyLine": "7333" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7342", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly format: ImageFormat;", - "mainBuggyLine": "7342" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7352", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getReceivingSurfaceId(callback: AsyncCallback): void;", - "mainBuggyLine": "7352" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7362", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getReceivingSurfaceId(): Promise;", - "mainBuggyLine": "7362" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7371", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readLatestImage(callback: AsyncCallback): void;", - "mainBuggyLine": "7371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7380", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readLatestImage(): Promise;", - "mainBuggyLine": "7380" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7389", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readNextImage(callback: AsyncCallback): void;", - "mainBuggyLine": "7389" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7398", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readNextImage(): Promise;", - "mainBuggyLine": "7398" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7408", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'imageArrival', callback: AsyncCallback): void;", - "mainBuggyLine": "7408" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7417", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(callback: AsyncCallback): void;", - "mainBuggyLine": "7417" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7426", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(): Promise;", - "mainBuggyLine": "7426" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7436", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ImageCreator", - "mainBuggyLine": "7436" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7444", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly capacity: number;", - "mainBuggyLine": "7444" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7453", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly format: ImageFormat;", - "mainBuggyLine": "7453" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7462", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dequeueImage(callback: AsyncCallback): void;", - "mainBuggyLine": "7462" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7471", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dequeueImage(): Promise;", - "mainBuggyLine": "7471" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7481", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "queueImage(interface: Image, callback: AsyncCallback): void;", - "mainBuggyLine": "7481" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7491", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "queueImage(interface: Image): Promise;", - "mainBuggyLine": "7491" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7501", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'imageRelease', callback: AsyncCallback): void;", - "mainBuggyLine": "7501" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7510", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(callback: AsyncCallback): void;", - "mainBuggyLine": "7510" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts", - "codeContextStaerLine": "7519", - "defectLevel": 2, - "defectType": "API_DOC_CROSSPLATFORM_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [form] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(): Promise;", - "mainBuggyLine": "7519" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "37", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare namespace media", - "mainBuggyLine": "37" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "79", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createAVRecorder(callback: AsyncCallback): void;", - "mainBuggyLine": "79" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "106", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createAudioPlayer(): AudioPlayer;", - "mainBuggyLine": "106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "116", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createAudioRecorder(): AudioRecorder;", - "mainBuggyLine": "116" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "129", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createMediaSourceWithUrl(url: string, headers?: Record): MediaSource;", - "mainBuggyLine": "129" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "139", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createVideoPlayer(callback: AsyncCallback): void;", - "mainBuggyLine": "139" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "149", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createVideoPlayer(): Promise;", - "mainBuggyLine": "149" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "160", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createVideoRecorder(callback: AsyncCallback): void;", - "mainBuggyLine": "160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "171", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createVideoRecorder(): Promise;", - "mainBuggyLine": "171" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "183", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createSoundPool(\n maxStreams: number,\n audioRenderInfo: audio.AudioRendererInfo,\n callback: AsyncCallback\n ): void;", - "mainBuggyLine": "183" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "199", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createSoundPool(maxStreams: number, audioRenderInfo: audio.AudioRendererInfo): Promise;", - "mainBuggyLine": "199" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "209", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createAVScreenCaptureRecorder(): Promise;", - "mainBuggyLine": "209" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "224", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function reportAVScreenCaptureUserChoice(sessionId: number, choice: string): Promise;", - "mainBuggyLine": "224" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "233", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type SoundPool = _SoundPool;", - "mainBuggyLine": "233" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "233", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type SoundPool = _SoundPool;", - "mainBuggyLine": "233" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "241", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type PlayParameters = _PlayParameters;", - "mainBuggyLine": "241" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "241", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type PlayParameters = _PlayParameters;", - "mainBuggyLine": "241" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "294", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createAVMetadataExtractor(): Promise;", - "mainBuggyLine": "294" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "304", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createAVMetadataExtractor(callback: AsyncCallback): void;", - "mainBuggyLine": "304" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "314", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createAVImageGenerator(): Promise;", - "mainBuggyLine": "314" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "324", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createAVImageGenerator(callback: AsyncCallback): void;", - "mainBuggyLine": "324" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "333", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AVMetadataExtractor", - "mainBuggyLine": "333" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "340", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fdSrc ?: AVFileDescriptor;", - "mainBuggyLine": "340" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "348", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dataSrc ?: AVDataSrcDescriptor;", - "mainBuggyLine": "348" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "358", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fetchMetadata(callback: AsyncCallback): void;", - "mainBuggyLine": "358" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "368", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fetchMetadata(): Promise;", - "mainBuggyLine": "368" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "379", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fetchAlbumCover(callback: AsyncCallback): void;", - "mainBuggyLine": "379" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "389", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fetchAlbumCover(): Promise;", - "mainBuggyLine": "389" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "398", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(callback: AsyncCallback): void;", - "mainBuggyLine": "398" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "407", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(): Promise;", - "mainBuggyLine": "407" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "416", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AVMetadata", - "mainBuggyLine": "416" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "431", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "album?: string;", - "mainBuggyLine": "431" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "447", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "albumArtist?: string;", - "mainBuggyLine": "447" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "463", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "artist?: string;", - "mainBuggyLine": "463" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "479", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "author?: string;", - "mainBuggyLine": "479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "495", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dateTime?: string;", - "mainBuggyLine": "495" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "511", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dateTimeFormat?: string;", - "mainBuggyLine": "511" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "527", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "composer?: string;", - "mainBuggyLine": "527" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "541", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "duration?: string;", - "mainBuggyLine": "541" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "550", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "genre?: string;", - "mainBuggyLine": "550" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "564", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hasAudio?: string;", - "mainBuggyLine": "564" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "578", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hasVideo?: string;", - "mainBuggyLine": "578" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "594", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "mimeType?: string;", - "mainBuggyLine": "594" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "610", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "trackCount?: string;", - "mainBuggyLine": "610" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "624", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sampleRate?: string;", - "mainBuggyLine": "624" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "638", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "title?: string;", - "mainBuggyLine": "638" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "652", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "videoHeight?: string;", - "mainBuggyLine": "652" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "666", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "videoWidth?: string;", - "mainBuggyLine": "666" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "675", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "videoOrientation?: string;", - "mainBuggyLine": "675" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "684", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hdrType?: HdrType;", - "mainBuggyLine": "684" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "692", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "location?: Location;", - "mainBuggyLine": "692" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "700", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "customInfo?: Record;", - "mainBuggyLine": "700" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "709", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum HdrType", - "mainBuggyLine": "709" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "715", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AV_HDR_TYPE_NONE = 0", - "mainBuggyLine": "715" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "722", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AV_HDR_TYPE_VIVID = 1", - "mainBuggyLine": "722" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "732", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AVImageGenerator", - "mainBuggyLine": "732" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "739", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fdSrc ?: AVFileDescriptor;", - "mainBuggyLine": "739" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "755", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fetchFrameByTime(timeUs: number, options: AVImageQueryOptions, param: PixelMapParams,\n callback: AsyncCallback): void;", - "mainBuggyLine": "755" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "773", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fetchFrameByTime(timeUs: number, options: AVImageQueryOptions, param: PixelMapParams): Promise;", - "mainBuggyLine": "773" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "782", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(callback: AsyncCallback): void;", - "mainBuggyLine": "782" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "791", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(): Promise;", - "mainBuggyLine": "791" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "800", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum AVImageQueryOptions", - "mainBuggyLine": "800" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "807", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AV_IMAGE_QUERY_NEXT_SYNC", - "mainBuggyLine": "807" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "815", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AV_IMAGE_QUERY_PREVIOUS_SYNC", - "mainBuggyLine": "815" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "823", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AV_IMAGE_QUERY_CLOSEST_SYNC", - "mainBuggyLine": "823" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "832", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AV_IMAGE_QUERY_CLOSEST", - "mainBuggyLine": "832" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "841", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface PixelMapParams", - "mainBuggyLine": "841" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "849", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "width?: number;", - "mainBuggyLine": "849" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "858", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "height?: number;", - "mainBuggyLine": "858" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "867", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "colorFormat?: PixelFormat;", - "mainBuggyLine": "867" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "877", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum PixelFormat", - "mainBuggyLine": "877" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "884", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RGB_565 = 2", - "mainBuggyLine": "884" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "892", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RGBA_8888 = 3", - "mainBuggyLine": "892" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "900", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RGB_888 = 5", - "mainBuggyLine": "900" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1071", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type AVPlayerState = 'idle' | 'initialized' | 'prepared' | 'playing' | 'paused' | 'completed' | 'stopped' | 'released' | 'error';", - "mainBuggyLine": "1071" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1417", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addSubtitleFromFd(fd: number, offset?: number, length?: number): Promise;", - "mainBuggyLine": "1417" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1429", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addSubtitleFromUrl(url: string): Promise;", - "mainBuggyLine": "1429" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1444", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "url?: string;", - "mainBuggyLine": "1444" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1457", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fdSrc?: AVFileDescriptor;", - "mainBuggyLine": "1457" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1470", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "dataSrc?: AVDataSrcDescriptor;", - "mainBuggyLine": "1470" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1483", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "loop: boolean;", - "mainBuggyLine": "1483" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1500", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "audioInterruptMode?: audio.InterruptMode;", - "mainBuggyLine": "1500" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1517", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "audioRendererInfo?: audio.AudioRendererInfo;", - "mainBuggyLine": "1517" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1530", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "audioEffectMode ?: audio.AudioEffectMode;", - "mainBuggyLine": "1530" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1543", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly currentTime: number;", - "mainBuggyLine": "1543" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1556", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly duration: number;", - "mainBuggyLine": "1556" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1569", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly state: AVPlayerState;", - "mainBuggyLine": "1569" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1582", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "surfaceId?: string;", - "mainBuggyLine": "1582" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1595", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly width: number;", - "mainBuggyLine": "1595" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1608", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly height: number;", - "mainBuggyLine": "1608" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1623", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "videoScaleType?: VideoScaleType;", - "mainBuggyLine": "1623" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1785", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'volumeChange'): void;", - "mainBuggyLine": "1785" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1808", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'endOfStream'): void;", - "mainBuggyLine": "1808" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1861", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'speedDone'): void;", - "mainBuggyLine": "1861" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1884", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'bitrateDone'): void;", - "mainBuggyLine": "1884" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1937", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'durationUpdate'): void;", - "mainBuggyLine": "1937" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1963", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'bufferingUpdate'): void;", - "mainBuggyLine": "1963" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1986", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'startRenderFrame'): void;", - "mainBuggyLine": "1986" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2009", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'videoSizeChange'): void;", - "mainBuggyLine": "2009" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2032", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'audioInterrupt'): void;", - "mainBuggyLine": "2032" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2058", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'availableBitrates'): void;", - "mainBuggyLine": "2058" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2093", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "2093" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2160", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'subtitleUpdate', callback: Callback): void", - "mainBuggyLine": "2160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2169", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'subtitleUpdate', callback?: Callback): void", - "mainBuggyLine": "2169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2181", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum MediaErrorCode", - "mainBuggyLine": "2181" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2189", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MSERR_OK = 0", - "mainBuggyLine": "2189" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2198", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MSERR_NO_MEMORY = 1", - "mainBuggyLine": "2198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2207", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MSERR_OPERATION_NOT_PERMIT = 2", - "mainBuggyLine": "2207" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2216", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MSERR_INVALID_VAL = 3", - "mainBuggyLine": "2216" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2225", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MSERR_IO = 4", - "mainBuggyLine": "2225" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2234", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MSERR_TIMEOUT = 5", - "mainBuggyLine": "2234" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2243", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MSERR_UNKNOWN = 6", - "mainBuggyLine": "2243" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2252", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MSERR_SERVICE_DIED = 7", - "mainBuggyLine": "2252" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2261", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MSERR_INVALID_STATE = 8", - "mainBuggyLine": "2261" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2270", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MSERR_UNSUPPORTED = 9", - "mainBuggyLine": "2270" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2357", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setMimeType(mimeType: AVMimeTypes): void;", - "mainBuggyLine": "2357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2366", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum AVMimeTypes", - "mainBuggyLine": "2366" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2372", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "APPLICATION_M3U8 = 'application/m3u8'", - "mainBuggyLine": "2372" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2389", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "preferredWidth?: number;", - "mainBuggyLine": "2389" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2396", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "preferredHeight?: number;", - "mainBuggyLine": "2396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2403", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "preferredBufferDuration?: number;", - "mainBuggyLine": "2403" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2411", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "preferredHdr?: boolean;", - "mainBuggyLine": "2411" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2446", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fd: number", - "mainBuggyLine": "2446" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2461", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "offset?: number", - "mainBuggyLine": "2461" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2476", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length?: number", - "mainBuggyLine": "2476" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2510", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fileSize: number;", - "mainBuggyLine": "2510" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2532", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "callback: (buffer: ArrayBuffer, length: number, pos?: number) => number;", - "mainBuggyLine": "2532" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2543", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface SubtitleInfo", - "mainBuggyLine": "2543" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2550", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "duration?: number;", - "mainBuggyLine": "2550" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2557", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startTime?: number;", - "mainBuggyLine": "2557" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2564", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "text?: string;", - "mainBuggyLine": "2564" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2574", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type AudioState = 'idle' | 'playing' | 'paused' | 'stopped' | 'error';", - "mainBuggyLine": "2574" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2574", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type AudioState = 'idle' | 'playing' | 'paused' | 'stopped' | 'error';", - "mainBuggyLine": "2574" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2586", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AudioPlayer", - "mainBuggyLine": "2586" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2594", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "play(): void;", - "mainBuggyLine": "2594" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2603", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pause(): void;", - "mainBuggyLine": "2603" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2612", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stop(): void;", - "mainBuggyLine": "2612" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2621", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "reset(): void;", - "mainBuggyLine": "2621" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2631", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "seek(timeMs: number): void;", - "mainBuggyLine": "2631" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2641", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setVolume(vol: number): void;", - "mainBuggyLine": "2641" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2650", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(): void;", - "mainBuggyLine": "2650" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2660", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getTrackDescription(callback: AsyncCallback>): void;", - "mainBuggyLine": "2660" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2670", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getTrackDescription(): Promise>;", - "mainBuggyLine": "2670" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2682", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'bufferingUpdate', callback: (infoType: BufferingInfoType, value: number) => void): void;", - "mainBuggyLine": "2682" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2693", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "src: string;", - "mainBuggyLine": "2693" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2693", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "src: string;", - "mainBuggyLine": "2693" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2702", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fdSrc: AVFileDescriptor;", - "mainBuggyLine": "2702" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2702", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fdSrc: AVFileDescriptor;", - "mainBuggyLine": "2702" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2711", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "loop: boolean;", - "mainBuggyLine": "2711" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2711", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "loop: boolean;", - "mainBuggyLine": "2711" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2722", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "audioInterruptMode?: audio.InterruptMode;", - "mainBuggyLine": "2722" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2722", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "audioInterruptMode?: audio.InterruptMode;", - "mainBuggyLine": "2722" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2731", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly currentTime: number;", - "mainBuggyLine": "2731" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2731", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly currentTime: number;", - "mainBuggyLine": "2731" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2740", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly duration: number;", - "mainBuggyLine": "2740" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2740", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly duration: number;", - "mainBuggyLine": "2740" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2749", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly state: AudioState;", - "mainBuggyLine": "2749" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2749", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly state: AudioState;", - "mainBuggyLine": "2749" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2760", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'play' | 'pause' | 'stop' | 'reset' | 'dataLoad' | 'finish' | 'volumeChange', callback: () => void): void;", - "mainBuggyLine": "2760" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2760", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'play' | 'pause' | 'stop' | 'reset' | 'dataLoad' | 'finish' | 'volumeChange', callback: () => void): void;", - "mainBuggyLine": "2760" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2760", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'play' | 'pause' | 'stop' | 'reset' | 'dataLoad' | 'finish' | 'volumeChange', callback: () => void): void;", - "mainBuggyLine": "2760" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2760", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'play' | 'pause' | 'stop' | 'reset' | 'dataLoad' | 'finish' | 'volumeChange', callback: () => void): void;", - "mainBuggyLine": "2760" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2760", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'play' | 'pause' | 'stop' | 'reset' | 'dataLoad' | 'finish' | 'volumeChange', callback: () => void): void;", - "mainBuggyLine": "2760" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2760", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'play' | 'pause' | 'stop' | 'reset' | 'dataLoad' | 'finish' | 'volumeChange', callback: () => void): void;", - "mainBuggyLine": "2760" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2760", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'play' | 'pause' | 'stop' | 'reset' | 'dataLoad' | 'finish' | 'volumeChange', callback: () => void): void;", - "mainBuggyLine": "2760" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2771", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'timeUpdate', callback: Callback): void;", - "mainBuggyLine": "2771" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2782", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'audioInterrupt', callback: (info: audio.InterruptEvent) => void): void;", - "mainBuggyLine": "2782" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2793", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "2793" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2807", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type AVRecorderState = 'idle' | 'prepared' | 'started' | 'paused' | 'stopped' | 'released' | 'error';", - "mainBuggyLine": "2807" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2840", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "prepare(config: AVRecorderConfig, callback: AsyncCallback): void;", - "mainBuggyLine": "2840" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2879", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAVRecorderConfig(callback: AsyncCallback): void;", - "mainBuggyLine": "2879" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2890", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAVRecorderConfig(): Promise;", - "mainBuggyLine": "2890" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2901", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getInputSurface(callback: AsyncCallback): void;", - "mainBuggyLine": "2901" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2912", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getInputSurface(): Promise;", - "mainBuggyLine": "2912" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2926", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "updateRotation(rotation: number): Promise;", - "mainBuggyLine": "2926" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2926", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "updateRotation(rotation: number): Promise;", - "mainBuggyLine": "2926" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2937", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "start(callback: AsyncCallback): void;", - "mainBuggyLine": "2937" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2969", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pause(callback: AsyncCallback): void;", - "mainBuggyLine": "2969" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3001", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "resume(callback: AsyncCallback): void;", - "mainBuggyLine": "3001" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3033", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stop(callback: AsyncCallback): void;", - "mainBuggyLine": "3033" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3064", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "reset(callback: AsyncCallback): void;", - "mainBuggyLine": "3064" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3074", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "reset(): Promise;", - "mainBuggyLine": "3074" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3083", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(callback: AsyncCallback): void;", - "mainBuggyLine": "3083" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3111", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getCurrentAudioCapturerInfo(callback: AsyncCallback): void;", - "mainBuggyLine": "3111" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3122", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getCurrentAudioCapturerInfo(): Promise;", - "mainBuggyLine": "3122" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3132", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAudioCapturerMaxAmplitude(callback: AsyncCallback): void;", - "mainBuggyLine": "3132" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3142", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAudioCapturerMaxAmplitude(): Promise;", - "mainBuggyLine": "3142" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3152", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAvailableEncoder(callback: AsyncCallback>): void;", - "mainBuggyLine": "3152" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3162", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAvailableEncoder(): Promise>;", - "mainBuggyLine": "3162" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3175", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly state: AVRecorderState;", - "mainBuggyLine": "3175" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3186", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'audioCapturerChange', callback: Callback): void;", - "mainBuggyLine": "3186" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3261", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "3261" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3299", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'audioCapturerChange'): void;", - "mainBuggyLine": "3299" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3311", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum AudioEncoder", - "mainBuggyLine": "3311" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3318", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEFAULT = 0", - "mainBuggyLine": "3318" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3326", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AMR_NB = 1", - "mainBuggyLine": "3326" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3334", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AMR_WB = 2", - "mainBuggyLine": "3334" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3342", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AAC_LC = 3", - "mainBuggyLine": "3342" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3350", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HE_AAC = 4", - "mainBuggyLine": "3350" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3362", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum AudioOutputFormat", - "mainBuggyLine": "3362" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3369", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEFAULT = 0", - "mainBuggyLine": "3369" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3377", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MPEG_4 = 2", - "mainBuggyLine": "3377" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3385", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AMR_NB = 3", - "mainBuggyLine": "3385" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3393", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AMR_WB = 4", - "mainBuggyLine": "3393" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3401", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AAC_ADTS = 6", - "mainBuggyLine": "3401" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3411", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Location", - "mainBuggyLine": "3411" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3417", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "latitude: number;", - "mainBuggyLine": "3417" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3417", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "latitude: number;", - "mainBuggyLine": "3417" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3424", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "longitude: number;", - "mainBuggyLine": "3424" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3424", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "longitude: number;", - "mainBuggyLine": "3424" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3436", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AudioRecorderConfig", - "mainBuggyLine": "3436" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3445", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "audioEncoder?: AudioEncoder;", - "mainBuggyLine": "3445" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3445", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "audioEncoder?: AudioEncoder;", - "mainBuggyLine": "3445" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3453", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "audioEncodeBitRate?: number;", - "mainBuggyLine": "3453" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3453", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "audioEncodeBitRate?: number;", - "mainBuggyLine": "3453" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3461", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "audioSampleRate?: number;", - "mainBuggyLine": "3461" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3461", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "audioSampleRate?: number;", - "mainBuggyLine": "3461" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3469", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "numberOfChannels?: number;", - "mainBuggyLine": "3469" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3469", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "numberOfChannels?: number;", - "mainBuggyLine": "3469" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3479", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "format?: AudioOutputFormat;", - "mainBuggyLine": "3479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3479", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "format?: AudioOutputFormat;", - "mainBuggyLine": "3479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3490", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "uri: string;", - "mainBuggyLine": "3490" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3490", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uri: string;", - "mainBuggyLine": "3490" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3498", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "location?: Location;", - "mainBuggyLine": "3498" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3498", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "location?: Location;", - "mainBuggyLine": "3498" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3506", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "audioEncoderMime?: CodecMimeType;", - "mainBuggyLine": "3506" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3506", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "audioEncoderMime?: CodecMimeType;", - "mainBuggyLine": "3506" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3513", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fileFormat?: ContainerFormatType;", - "mainBuggyLine": "3513" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3513", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fileFormat?: ContainerFormatType;", - "mainBuggyLine": "3513" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3526", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AudioRecorder", - "mainBuggyLine": "3526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3536", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "prepare(config: AudioRecorderConfig): void;", - "mainBuggyLine": "3536" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3545", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "start(): void;", - "mainBuggyLine": "3545" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3554", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pause(): void;", - "mainBuggyLine": "3554" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3563", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "resume(): void;", - "mainBuggyLine": "3563" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3572", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stop(): void;", - "mainBuggyLine": "3572" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3581", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(): void;", - "mainBuggyLine": "3581" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3592", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "reset(): void;", - "mainBuggyLine": "3592" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3603", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'prepare' | 'start' | 'pause' | 'resume' | 'stop' | 'release' | 'reset', callback: () => void): void;", - "mainBuggyLine": "3603" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3603", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'prepare' | 'start' | 'pause' | 'resume' | 'stop' | 'release' | 'reset', callback: () => void): void;", - "mainBuggyLine": "3603" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3603", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'prepare' | 'start' | 'pause' | 'resume' | 'stop' | 'release' | 'reset', callback: () => void): void;", - "mainBuggyLine": "3603" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3603", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'prepare' | 'start' | 'pause' | 'resume' | 'stop' | 'release' | 'reset', callback: () => void): void;", - "mainBuggyLine": "3603" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3603", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'prepare' | 'start' | 'pause' | 'resume' | 'stop' | 'release' | 'reset', callback: () => void): void;", - "mainBuggyLine": "3603" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3603", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'prepare' | 'start' | 'pause' | 'resume' | 'stop' | 'release' | 'reset', callback: () => void): void;", - "mainBuggyLine": "3603" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3603", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'prepare' | 'start' | 'pause' | 'resume' | 'stop' | 'release' | 'reset', callback: () => void): void;", - "mainBuggyLine": "3603" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3614", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "3614" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3624", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type VideoRecordState = 'idle' | 'prepared' | 'playing' | 'paused' | 'stopped' | 'error';", - "mainBuggyLine": "3624" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3624", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type VideoRecordState = 'idle' | 'prepared' | 'playing' | 'paused' | 'stopped' | 'error';", - "mainBuggyLine": "3624" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3636", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface VideoRecorder", - "mainBuggyLine": "3636" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3651", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "prepare(config: VideoRecorderConfig, callback: AsyncCallback): void;", - "mainBuggyLine": "3651" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3666", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "prepare(config: VideoRecorderConfig): Promise;", - "mainBuggyLine": "3666" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3677", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getInputSurface(callback: AsyncCallback): void;", - "mainBuggyLine": "3677" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3688", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getInputSurface(): Promise;", - "mainBuggyLine": "3688" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3699", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "start(callback: AsyncCallback): void;", - "mainBuggyLine": "3699" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3710", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "start(): Promise;", - "mainBuggyLine": "3710" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3721", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pause(callback: AsyncCallback): void;", - "mainBuggyLine": "3721" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3732", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pause(): Promise;", - "mainBuggyLine": "3732" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3743", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "resume(callback: AsyncCallback): void;", - "mainBuggyLine": "3743" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3754", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "resume(): Promise;", - "mainBuggyLine": "3754" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3765", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stop(callback: AsyncCallback): void;", - "mainBuggyLine": "3765" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3776", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stop(): Promise;", - "mainBuggyLine": "3776" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3785", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(callback: AsyncCallback): void;", - "mainBuggyLine": "3785" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3794", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(): Promise;", - "mainBuggyLine": "3794" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3806", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "reset(callback: AsyncCallback): void;", - "mainBuggyLine": "3806" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3818", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "reset(): Promise;", - "mainBuggyLine": "3818" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3829", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "3829" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3837", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly state: VideoRecordState;", - "mainBuggyLine": "3837" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3837", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly state: VideoRecordState;", - "mainBuggyLine": "3837" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3847", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type VideoPlayState = 'idle' | 'prepared' | 'playing' | 'paused' | 'stopped' | 'error';", - "mainBuggyLine": "3847" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3847", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type VideoPlayState = 'idle' | 'prepared' | 'playing' | 'paused' | 'stopped' | 'error';", - "mainBuggyLine": "3847" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3985", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface VideoPlayer", - "mainBuggyLine": "3985" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3995", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setDisplaySurface(surfaceId: string, callback: AsyncCallback): void;", - "mainBuggyLine": "3995" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4005", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setDisplaySurface(surfaceId: string): Promise;", - "mainBuggyLine": "4005" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4014", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "prepare(callback: AsyncCallback): void;", - "mainBuggyLine": "4014" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4023", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "prepare(): Promise;", - "mainBuggyLine": "4023" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4032", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "play(callback: AsyncCallback): void;", - "mainBuggyLine": "4032" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4041", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "play(): Promise;", - "mainBuggyLine": "4041" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4050", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pause(callback: AsyncCallback): void;", - "mainBuggyLine": "4050" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4059", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pause(): Promise;", - "mainBuggyLine": "4059" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4068", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stop(callback: AsyncCallback): void;", - "mainBuggyLine": "4068" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4077", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stop(): Promise;", - "mainBuggyLine": "4077" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4086", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "reset(callback: AsyncCallback): void;", - "mainBuggyLine": "4086" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4095", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "reset(): Promise;", - "mainBuggyLine": "4095" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4107", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "seek(timeMs: number, callback: AsyncCallback): void;", - "mainBuggyLine": "4107" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4119", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "seek(timeMs: number, mode: SeekMode, callback: AsyncCallback): void;", - "mainBuggyLine": "4119" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4131", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "seek(timeMs: number, mode?: SeekMode): Promise;", - "mainBuggyLine": "4131" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4141", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setVolume(vol: number, callback: AsyncCallback): void;", - "mainBuggyLine": "4141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4151", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setVolume(vol: number): Promise;", - "mainBuggyLine": "4151" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4160", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(callback: AsyncCallback): void;", - "mainBuggyLine": "4160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4169", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(): Promise;", - "mainBuggyLine": "4169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4178", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getTrackDescription(callback: AsyncCallback>): void;", - "mainBuggyLine": "4178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4188", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getTrackDescription(): Promise>;", - "mainBuggyLine": "4188" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4198", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "url: string;", - "mainBuggyLine": "4198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4198", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "url: string;", - "mainBuggyLine": "4198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4207", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fdSrc: AVFileDescriptor;", - "mainBuggyLine": "4207" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4207", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fdSrc: AVFileDescriptor;", - "mainBuggyLine": "4207" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4216", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "loop: boolean;", - "mainBuggyLine": "4216" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4216", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "loop: boolean;", - "mainBuggyLine": "4216" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4225", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly currentTime: number;", - "mainBuggyLine": "4225" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4225", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly currentTime: number;", - "mainBuggyLine": "4225" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4234", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly duration: number;", - "mainBuggyLine": "4234" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4234", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly duration: number;", - "mainBuggyLine": "4234" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4243", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly state: VideoPlayState;", - "mainBuggyLine": "4243" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4243", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly state: VideoPlayState;", - "mainBuggyLine": "4243" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4252", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly width: number;", - "mainBuggyLine": "4252" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4252", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly width: number;", - "mainBuggyLine": "4252" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4261", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly height: number;", - "mainBuggyLine": "4261" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4261", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly height: number;", - "mainBuggyLine": "4261" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4272", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "audioInterruptMode?: audio.InterruptMode;", - "mainBuggyLine": "4272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4272", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "audioInterruptMode?: audio.InterruptMode;", - "mainBuggyLine": "4272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4282", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "videoScaleType?: VideoScaleType;", - "mainBuggyLine": "4282" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4282", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "videoScaleType?: VideoScaleType;", - "mainBuggyLine": "4282" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4293", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setSpeed(speed: number, callback: AsyncCallback): void;", - "mainBuggyLine": "4293" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4303", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setSpeed(speed: number): Promise;", - "mainBuggyLine": "4303" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4314", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'playbackCompleted', callback: Callback): void;", - "mainBuggyLine": "4314" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4326", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'bufferingUpdate', callback: (infoType: BufferingInfoType, value: number) => void): void;", - "mainBuggyLine": "4326" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4337", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'startRenderFrame', callback: Callback): void;", - "mainBuggyLine": "4337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4348", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'videoSizeChanged', callback: (width: number, height: number) => void): void;", - "mainBuggyLine": "4348" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4359", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'audioInterrupt', callback: (info: audio.InterruptEvent) => void): void;", - "mainBuggyLine": "4359" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4370", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "4370" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4445", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CFT_MPEG_4 = 'mp4'", - "mainBuggyLine": "4445" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4681", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface VideoRecorderProfile", - "mainBuggyLine": "4681" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4688", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly audioBitrate: number;", - "mainBuggyLine": "4688" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4688", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly audioBitrate: number;", - "mainBuggyLine": "4688" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4696", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly audioChannels: number;", - "mainBuggyLine": "4696" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4696", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly audioChannels: number;", - "mainBuggyLine": "4696" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4704", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly audioCodec: CodecMimeType;", - "mainBuggyLine": "4704" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4704", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly audioCodec: CodecMimeType;", - "mainBuggyLine": "4704" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4712", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly audioSampleRate: number;", - "mainBuggyLine": "4712" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4712", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly audioSampleRate: number;", - "mainBuggyLine": "4712" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4720", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly fileFormat: ContainerFormatType;", - "mainBuggyLine": "4720" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4720", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly fileFormat: ContainerFormatType;", - "mainBuggyLine": "4720" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4728", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly videoBitrate: number;", - "mainBuggyLine": "4728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4728", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly videoBitrate: number;", - "mainBuggyLine": "4728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4736", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly videoCodec: CodecMimeType;", - "mainBuggyLine": "4736" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4736", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly videoCodec: CodecMimeType;", - "mainBuggyLine": "4736" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4744", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly videoFrameWidth: number;", - "mainBuggyLine": "4744" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4744", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly videoFrameWidth: number;", - "mainBuggyLine": "4744" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4752", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly videoFrameHeight: number;", - "mainBuggyLine": "4752" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4752", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly videoFrameHeight: number;", - "mainBuggyLine": "4752" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4760", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly videoFrameRate: number;", - "mainBuggyLine": "4760" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4760", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly videoFrameRate: number;", - "mainBuggyLine": "4760" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4784", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_SOURCE_TYPE_DEFAULT = 0", - "mainBuggyLine": "4784" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4806", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum VideoSourceType", - "mainBuggyLine": "4806" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4812", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VIDEO_SOURCE_TYPE_SURFACE_YUV = 0", - "mainBuggyLine": "4812" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4818", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VIDEO_SOURCE_TYPE_SURFACE_ES = 1", - "mainBuggyLine": "4818" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4829", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface VideoRecorderConfig", - "mainBuggyLine": "4829" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4836", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "audioSourceType?: AudioSourceType;", - "mainBuggyLine": "4836" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4836", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "audioSourceType?: AudioSourceType;", - "mainBuggyLine": "4836" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4843", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "videoSourceType: VideoSourceType;", - "mainBuggyLine": "4843" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4843", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "videoSourceType: VideoSourceType;", - "mainBuggyLine": "4843" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4850", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "profile: VideoRecorderProfile;", - "mainBuggyLine": "4850" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4850", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "profile: VideoRecorderProfile;", - "mainBuggyLine": "4850" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4859", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "url: string;", - "mainBuggyLine": "4859" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4859", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "url: string;", - "mainBuggyLine": "4859" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4867", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "rotation?: number;", - "mainBuggyLine": "4867" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4867", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rotation?: number;", - "mainBuggyLine": "4867" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4874", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "location?: Location;", - "mainBuggyLine": "4874" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4874", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "location?: Location;", - "mainBuggyLine": "4874" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4884", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface EncoderInfo", - "mainBuggyLine": "4884" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4891", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "mimeType: CodecMimeType;", - "mainBuggyLine": "4891" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4899", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type: string;", - "mainBuggyLine": "4899" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4907", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bitRate?: Range;", - "mainBuggyLine": "4907" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4915", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "frameRate?: Range;", - "mainBuggyLine": "4915" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4923", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "width?: Range;", - "mainBuggyLine": "4923" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4931", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "height?: Range;", - "mainBuggyLine": "4931" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4939", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "channels?: Range;", - "mainBuggyLine": "4939" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4947", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sampleRate?: Array;", - "mainBuggyLine": "4947" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4957", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Range", - "mainBuggyLine": "4957" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4964", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "min: number;", - "mainBuggyLine": "4964" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "4972", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "max: number;", - "mainBuggyLine": "4972" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5002", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "audioBitrate?: number;", - "mainBuggyLine": "5002" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5015", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "audioChannels?: number;", - "mainBuggyLine": "5015" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5028", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "audioCodec?: CodecMimeType;", - "mainBuggyLine": "5028" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5041", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "audioSampleRate?: number;", - "mainBuggyLine": "5041" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5054", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fileFormat: ContainerFormatType;", - "mainBuggyLine": "5054" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5061", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "videoBitrate?: number;", - "mainBuggyLine": "5061" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5061", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "videoBitrate?: number;", - "mainBuggyLine": "5061" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5068", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "videoCodec?: CodecMimeType;", - "mainBuggyLine": "5068" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5068", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "videoCodec?: CodecMimeType;", - "mainBuggyLine": "5068" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5075", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "videoFrameWidth?: number;", - "mainBuggyLine": "5075" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5075", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "videoFrameWidth?: number;", - "mainBuggyLine": "5075" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5082", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "videoFrameHeight?: number;", - "mainBuggyLine": "5082" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5082", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "videoFrameHeight?: number;", - "mainBuggyLine": "5082" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5089", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "videoFrameRate?: number;", - "mainBuggyLine": "5089" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5089", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "videoFrameRate?: number;", - "mainBuggyLine": "5089" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5097", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isHdr?: boolean;", - "mainBuggyLine": "5097" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5105", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableTemporalScale?: boolean;", - "mainBuggyLine": "5105" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5135", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "audioSourceType?: AudioSourceType;", - "mainBuggyLine": "5135" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5141", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "videoSourceType?: VideoSourceType;", - "mainBuggyLine": "5141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5141", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "videoSourceType?: VideoSourceType;", - "mainBuggyLine": "5141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5153", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "profile: AVRecorderProfile;", - "mainBuggyLine": "5153" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5167", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "url: string;", - "mainBuggyLine": "5167" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5176", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "rotation?: number;", - "mainBuggyLine": "5176" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5176", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rotation?: number;", - "mainBuggyLine": "5176" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5184", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "location?: Location;", - "mainBuggyLine": "5184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5184", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "location?: Location;", - "mainBuggyLine": "5184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5191", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "metadata?: AVMetadata;", - "mainBuggyLine": "5191" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5294", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VIDEO_H263 = 'video/h263'", - "mainBuggyLine": "5294" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5300", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VIDEO_AVC = 'video/avc'", - "mainBuggyLine": "5300" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5306", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VIDEO_MPEG2 = 'video/mpeg2'", - "mainBuggyLine": "5306" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5312", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VIDEO_MPEG4 = 'video/mp4v-es'", - "mainBuggyLine": "5312" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5319", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VIDEO_VP8 = 'video/x-vnd.on2.vp8'", - "mainBuggyLine": "5319" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5339", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_VORBIS = 'audio/vorbis'", - "mainBuggyLine": "5339" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5346", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO_FLAC = 'audio/flac'", - "mainBuggyLine": "5346" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5353", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VIDEO_HEVC = 'video/hevc'", - "mainBuggyLine": "5353" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5363", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum AVScreenCaptureRecordPreset", - "mainBuggyLine": "5363" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5369", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCREEN_RECORD_PRESET_H264_AAC_MP4 = 0", - "mainBuggyLine": "5369" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5375", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCREEN_RECORD_PRESET_H265_AAC_MP4 = 1", - "mainBuggyLine": "5375" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5385", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum AVScreenCaptureStateCode", - "mainBuggyLine": "5385" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5391", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCREENCAPTURE_STATE_STARTED = 0", - "mainBuggyLine": "5391" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5397", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCREENCAPTURE_STATE_CANCELED = 1", - "mainBuggyLine": "5397" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5403", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCREENCAPTURE_STATE_STOPPED_BY_USER = 2", - "mainBuggyLine": "5403" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5409", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCREENCAPTURE_STATE_INTERRUPTED_BY_OTHER = 3", - "mainBuggyLine": "5409" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5415", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCREENCAPTURE_STATE_STOPPED_BY_CALL = 4", - "mainBuggyLine": "5415" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5421", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCREENCAPTURE_STATE_MIC_UNAVAILABLE = 5", - "mainBuggyLine": "5421" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5427", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCREENCAPTURE_STATE_MIC_MUTED_BY_USER = 6", - "mainBuggyLine": "5427" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5433", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCREENCAPTURE_STATE_MIC_UNMUTED_BY_USER = 7", - "mainBuggyLine": "5433" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5439", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCREENCAPTURE_STATE_ENTER_PRIVATE_SCENE = 8", - "mainBuggyLine": "5439" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5445", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCREENCAPTURE_STATE_EXIT_PRIVATE_SCENE = 9", - "mainBuggyLine": "5445" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5455", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AVScreenCaptureRecordConfig", - "mainBuggyLine": "5455" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5461", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fd: number;", - "mainBuggyLine": "5461" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5461", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fd: number;", - "mainBuggyLine": "5461" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5467", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "frameWidth?: number;", - "mainBuggyLine": "5467" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5467", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "frameWidth?: number;", - "mainBuggyLine": "5467" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5473", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "frameHeight?: number;", - "mainBuggyLine": "5473" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5473", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "frameHeight?: number;", - "mainBuggyLine": "5473" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5479", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "videoBitrate?: number;", - "mainBuggyLine": "5479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5479", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "videoBitrate?: number;", - "mainBuggyLine": "5479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5485", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "audioSampleRate?: number;", - "mainBuggyLine": "5485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5485", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "audioSampleRate?: number;", - "mainBuggyLine": "5485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5491", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "audioChannelCount?: number;", - "mainBuggyLine": "5491" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5491", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "audioChannelCount?: number;", - "mainBuggyLine": "5491" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5497", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "audioBitrate?: number;", - "mainBuggyLine": "5497" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5497", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "audioBitrate?: number;", - "mainBuggyLine": "5497" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5503", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "preset?: AVScreenCaptureRecordPreset;", - "mainBuggyLine": "5503" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5503", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "preset?: AVScreenCaptureRecordPreset;", - "mainBuggyLine": "5503" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5514", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AVScreenCaptureRecorder", - "mainBuggyLine": "5514" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5526", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "init(config: AVScreenCaptureRecordConfig): Promise;", - "mainBuggyLine": "5526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5536", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startRecording(): Promise;", - "mainBuggyLine": "5536" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5546", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stopRecording(): Promise;", - "mainBuggyLine": "5546" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5557", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setMicEnabled(enable: boolean): Promise;", - "mainBuggyLine": "5557" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5567", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "release(): Promise;", - "mainBuggyLine": "5567" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5576", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'stateChange', callback: Callback): void;", - "mainBuggyLine": "5576" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5587", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "5587" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5596", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'stateChange', callback?: Callback): void;", - "mainBuggyLine": "5596" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5605", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "5605" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1714", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_mediaKeySystemInfoUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'mediaKeySystemInfoUpdate', callback: (mediaKeySystemInfo: Array) => void): void;", - "mainBuggyLine": "1714" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1731", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_mediaKeySystemInfoUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'mediaKeySystemInfoUpdate', callback?: (mediaKeySystemInfo: Array) => void): void;", - "mainBuggyLine": "1731" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1778", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_volumeChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'volumeChange', callback: Callback): void;", - "mainBuggyLine": "1778" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1801", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_endOfStream] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'endOfStream', callback: Callback): void;", - "mainBuggyLine": "1801" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1854", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_speedDone] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'speedDone', callback: Callback): void;", - "mainBuggyLine": "1854" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1877", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_bitrateDone] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'bitrateDone', callback: Callback): void;", - "mainBuggyLine": "1877" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1930", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_durationUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'durationUpdate', callback: Callback): void;", - "mainBuggyLine": "1930" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1955", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_bufferingUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'bufferingUpdate', callback: (infoType: BufferingInfoType, value: number) => void): void;", - "mainBuggyLine": "1955" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1979", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_startRenderFrame] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'startRenderFrame', callback: Callback): void;", - "mainBuggyLine": "1979" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2002", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_videoSizeChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'videoSizeChange', callback: (width: number, height: number) => void): void;", - "mainBuggyLine": "2002" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2025", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_audioInterrupt] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'audioInterrupt', callback: (info: audio.InterruptEvent) => void): void;", - "mainBuggyLine": "2025" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2050", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_availableBitrates] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'availableBitrates', callback: (bitrates: Array) => void): void;", - "mainBuggyLine": "2050" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2130", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_audioOutputDeviceChangeWithInfo] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'audioOutputDeviceChangeWithInfo', callback: Callback): void;", - "mainBuggyLine": "2130" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2151", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_audioOutputDeviceChangeWithInfo] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'audioOutputDeviceChangeWithInfo', callback?: Callback): void;", - "mainBuggyLine": "2151" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2160", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_subtitleUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'subtitleUpdate', callback: Callback): void", - "mainBuggyLine": "2160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2169", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_subtitleUpdate] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'subtitleUpdate', callback?: Callback): void", - "mainBuggyLine": "2169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3207", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_stateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'stateChange', callback: (state: AVRecorderState, reason: StateChangeReason) => void): void;", - "mainBuggyLine": "3207" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3261", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "3261" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3276", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_stateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'stateChange'): void;", - "mainBuggyLine": "3276" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3291", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'error'): void;", - "mainBuggyLine": "3291" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5576", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_stateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'stateChange', callback: Callback): void;", - "mainBuggyLine": "5576" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5587", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "5587" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5596", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_stateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'stateChange', callback?: Callback): void;", - "mainBuggyLine": "5596" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "5605", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "5605" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1778", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_05", - "description": "API check error of [limited api pair errors]: The on and off event subscription methods do not appear in pair.", - "language": "ts", - "mainBuggyCode": "on(type: 'volumeChange', callback: Callback): void;", - "mainBuggyLine": "1778" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1801", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_05", - "description": "API check error of [limited api pair errors]: The on and off event subscription methods do not appear in pair.", - "language": "ts", - "mainBuggyCode": "on(type: 'endOfStream', callback: Callback): void;", - "mainBuggyLine": "1801" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1854", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_05", - "description": "API check error of [limited api pair errors]: The on and off event subscription methods do not appear in pair.", - "language": "ts", - "mainBuggyCode": "on(type: 'speedDone', callback: Callback): void;", - "mainBuggyLine": "1854" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1877", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_05", - "description": "API check error of [limited api pair errors]: The on and off event subscription methods do not appear in pair.", - "language": "ts", - "mainBuggyCode": "on(type: 'bitrateDone', callback: Callback): void;", - "mainBuggyLine": "1877" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1930", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_05", - "description": "API check error of [limited api pair errors]: The on and off event subscription methods do not appear in pair.", - "language": "ts", - "mainBuggyCode": "on(type: 'durationUpdate', callback: Callback): void;", - "mainBuggyLine": "1930" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1955", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_05", - "description": "API check error of [limited api pair errors]: The on and off event subscription methods do not appear in pair.", - "language": "ts", - "mainBuggyCode": "on(type: 'bufferingUpdate', callback: (infoType: BufferingInfoType, value: number) => void): void;", - "mainBuggyLine": "1955" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "1979", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_05", - "description": "API check error of [limited api pair errors]: The on and off event subscription methods do not appear in pair.", - "language": "ts", - "mainBuggyCode": "on(type: 'startRenderFrame', callback: Callback): void;", - "mainBuggyLine": "1979" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2002", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_05", - "description": "API check error of [limited api pair errors]: The on and off event subscription methods do not appear in pair.", - "language": "ts", - "mainBuggyCode": "on(type: 'videoSizeChange', callback: (width: number, height: number) => void): void;", - "mainBuggyLine": "2002" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2025", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_05", - "description": "API check error of [limited api pair errors]: The on and off event subscription methods do not appear in pair.", - "language": "ts", - "mainBuggyCode": "on(type: 'audioInterrupt', callback: (info: audio.InterruptEvent) => void): void;", - "mainBuggyLine": "2025" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "2050", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_05", - "description": "API check error of [limited api pair errors]: The on and off event subscription methods do not appear in pair.", - "language": "ts", - "mainBuggyCode": "on(type: 'availableBitrates', callback: (bitrates: Array) => void): void;", - "mainBuggyLine": "2050" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3276", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_03", - "description": "API check error of [wrong parameter]: The callback parameter of off function should be optional.", - "language": "ts", - "mainBuggyCode": "off(type: 'stateChange'): void;", - "mainBuggyLine": "3276" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.media.d.ts", - "codeContextStaerLine": "3291", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_03", - "description": "API check error of [wrong parameter]: The callback parameter of off function should be optional.", - "language": "ts", - "mainBuggyCode": "off(type: 'error'): void;", - "mainBuggyLine": "3291" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_NAMESPACE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [namespace] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare namespace mediaLibrary", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "42", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "function getMediaLibrary(): MediaLibrary;", - "mainBuggyLine": "42" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "42", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "function getMediaLibrary(): MediaLibrary;", - "mainBuggyLine": "42" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "53", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "function getMediaLibrary(context: Context): MediaLibrary;", - "mainBuggyLine": "53" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "53", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "function getMediaLibrary(context: Context): MediaLibrary;", - "mainBuggyLine": "53" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "53", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "function getMediaLibrary(context: Context): MediaLibrary;", - "mainBuggyLine": "53" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "62", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " enum MediaType", - "mainBuggyLine": "62" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "62", - "defectLevel": 2, - "defectType": "API_DOC_ENUM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [enum] tag is missing.", - "language": "ts", - "mainBuggyCode": " enum MediaType", - "mainBuggyLine": "62" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "70", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "FILE = 0", - "mainBuggyLine": "70" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "78", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "IMAGE", - "mainBuggyLine": "78" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "VIDEO", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "94", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "AUDIO", - "mainBuggyLine": "94" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "103", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface MediaAssetOption", - "mainBuggyLine": "103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "103", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface MediaAssetOption", - "mainBuggyLine": "103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "110", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "src: string;", - "mainBuggyLine": "110" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "110", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "src: string;", - "mainBuggyLine": "110" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "117", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "mimeType: string;", - "mainBuggyLine": "117" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "117", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "mimeType: string;", - "mainBuggyLine": "117" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "124", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "relativePath?: string;", - "mainBuggyLine": "124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "124", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "relativePath?: string;", - "mainBuggyLine": "124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "133", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface MediaSelectOption", - "mainBuggyLine": "133" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "133", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface MediaSelectOption", - "mainBuggyLine": "133" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "140", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "type: 'image' | 'video' | 'media';", - "mainBuggyLine": "140" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "140", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: 'image' | 'video' | 'media';", - "mainBuggyLine": "140" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "147", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "count: number;", - "mainBuggyLine": "147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "147", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "count: number;", - "mainBuggyLine": "147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "157", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface FileAsset", - "mainBuggyLine": "157" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "157", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface FileAsset", - "mainBuggyLine": "157" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "165", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly id: number;", - "mainBuggyLine": "165" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "165", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly id: number;", - "mainBuggyLine": "165" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "173", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly uri: string;", - "mainBuggyLine": "173" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "173", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly uri: string;", - "mainBuggyLine": "173" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "181", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly mimeType: string;", - "mainBuggyLine": "181" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "181", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly mimeType: string;", - "mainBuggyLine": "181" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "189", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly mediaType: MediaType;", - "mainBuggyLine": "189" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "189", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly mediaType: MediaType;", - "mainBuggyLine": "189" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "197", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "displayName: string;", - "mainBuggyLine": "197" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "197", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "displayName: string;", - "mainBuggyLine": "197" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "205", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "title: string;", - "mainBuggyLine": "205" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "205", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "title: string;", - "mainBuggyLine": "205" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "213", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "relativePath: string;", - "mainBuggyLine": "213" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "213", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "relativePath: string;", - "mainBuggyLine": "213" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "221", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly parent: number;", - "mainBuggyLine": "221" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "221", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly parent: number;", - "mainBuggyLine": "221" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "229", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly size: number;", - "mainBuggyLine": "229" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "229", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly size: number;", - "mainBuggyLine": "229" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "237", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly dateAdded: number;", - "mainBuggyLine": "237" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "237", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly dateAdded: number;", - "mainBuggyLine": "237" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "245", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly dateModified: number;", - "mainBuggyLine": "245" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "245", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly dateModified: number;", - "mainBuggyLine": "245" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "253", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly dateTaken: number;", - "mainBuggyLine": "253" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "253", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly dateTaken: number;", - "mainBuggyLine": "253" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "261", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly artist: string;", - "mainBuggyLine": "261" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "261", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly artist: string;", - "mainBuggyLine": "261" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "269", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly audioAlbum: string;", - "mainBuggyLine": "269" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "269", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly audioAlbum: string;", - "mainBuggyLine": "269" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "277", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly width: number;", - "mainBuggyLine": "277" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "277", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly width: number;", - "mainBuggyLine": "277" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "285", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly height: number;", - "mainBuggyLine": "285" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "285", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly height: number;", - "mainBuggyLine": "285" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "294", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "orientation: number;", - "mainBuggyLine": "294" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "294", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "orientation: number;", - "mainBuggyLine": "294" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "302", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly duration: number;", - "mainBuggyLine": "302" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "302", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly duration: number;", - "mainBuggyLine": "302" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "310", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly albumId: number;", - "mainBuggyLine": "310" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "310", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly albumId: number;", - "mainBuggyLine": "310" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "318", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly albumUri: string;", - "mainBuggyLine": "318" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "318", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly albumUri: string;", - "mainBuggyLine": "318" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "326", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly albumName: string;", - "mainBuggyLine": "326" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "326", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly albumName: string;", - "mainBuggyLine": "326" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "337", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "isDirectory(callback: AsyncCallback): void;", - "mainBuggyLine": "337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "337", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "isDirectory(callback: AsyncCallback): void;", - "mainBuggyLine": "337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "346", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "isDirectory(): Promise;", - "mainBuggyLine": "346" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "346", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [returns] tag is missing.", - "language": "ts", - "mainBuggyCode": "isDirectory(): Promise;", - "mainBuggyLine": "346" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "356", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "commitModify(callback: AsyncCallback): void;", - "mainBuggyLine": "356" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "356", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "commitModify(callback: AsyncCallback): void;", - "mainBuggyLine": "356" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "365", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "commitModify(): Promise;", - "mainBuggyLine": "365" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "365", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [returns] tag is missing.", - "language": "ts", - "mainBuggyCode": "commitModify(): Promise;", - "mainBuggyLine": "365" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "376", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "open(mode: string, callback: AsyncCallback): void;", - "mainBuggyLine": "376" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "376", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "open(mode: string, callback: AsyncCallback): void;", - "mainBuggyLine": "376" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "376", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "open(mode: string, callback: AsyncCallback): void;", - "mainBuggyLine": "376" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "386", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "open(mode: string): Promise;", - "mainBuggyLine": "386" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "386", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [returns] tag is missing.", - "language": "ts", - "mainBuggyCode": "open(mode: string): Promise;", - "mainBuggyLine": "386" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "386", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "open(mode: string): Promise;", - "mainBuggyLine": "386" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "397", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "close(fd: number, callback: AsyncCallback): void;", - "mainBuggyLine": "397" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "397", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "close(fd: number, callback: AsyncCallback): void;", - "mainBuggyLine": "397" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "397", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "close(fd: number, callback: AsyncCallback): void;", - "mainBuggyLine": "397" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "407", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "close(fd: number): Promise;", - "mainBuggyLine": "407" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "407", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [returns] tag is missing.", - "language": "ts", - "mainBuggyCode": "close(fd: number): Promise;", - "mainBuggyLine": "407" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "407", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "close(fd: number): Promise;", - "mainBuggyLine": "407" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "417", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getThumbnail(callback: AsyncCallback): void;", - "mainBuggyLine": "417" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "417", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getThumbnail(callback: AsyncCallback): void;", - "mainBuggyLine": "417" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "428", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getThumbnail(size: Size, callback: AsyncCallback): void;", - "mainBuggyLine": "428" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "428", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getThumbnail(size: Size, callback: AsyncCallback): void;", - "mainBuggyLine": "428" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "428", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "getThumbnail(size: Size, callback: AsyncCallback): void;", - "mainBuggyLine": "428" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "438", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getThumbnail(size?: Size): Promise;", - "mainBuggyLine": "438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "438", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [returns] tag is missing.", - "language": "ts", - "mainBuggyCode": "getThumbnail(size?: Size): Promise;", - "mainBuggyLine": "438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "438", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getThumbnail(size?: Size): Promise;", - "mainBuggyLine": "438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "449", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "favorite(isFavorite: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "449" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "449", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "favorite(isFavorite: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "449" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "449", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "favorite(isFavorite: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "449" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "459", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "favorite(isFavorite: boolean): Promise;", - "mainBuggyLine": "459" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "459", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [returns] tag is missing.", - "language": "ts", - "mainBuggyCode": "favorite(isFavorite: boolean): Promise;", - "mainBuggyLine": "459" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "459", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "favorite(isFavorite: boolean): Promise;", - "mainBuggyLine": "459" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "469", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "isFavorite(callback: AsyncCallback): void;", - "mainBuggyLine": "469" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "469", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "isFavorite(callback: AsyncCallback): void;", - "mainBuggyLine": "469" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "478", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "isFavorite(): Promise;", - "mainBuggyLine": "478" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "478", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [returns] tag is missing.", - "language": "ts", - "mainBuggyCode": "isFavorite(): Promise;", - "mainBuggyLine": "478" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "489", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "trash(isTrash: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "489" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "489", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "trash(isTrash: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "489" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "489", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "trash(isTrash: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "489" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "499", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "trash(isTrash: boolean): Promise;", - "mainBuggyLine": "499" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "499", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [returns] tag is missing.", - "language": "ts", - "mainBuggyCode": "trash(isTrash: boolean): Promise;", - "mainBuggyLine": "499" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "499", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "trash(isTrash: boolean): Promise;", - "mainBuggyLine": "499" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "509", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "isTrash(callback: AsyncCallback): void;", - "mainBuggyLine": "509" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "509", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "isTrash(callback: AsyncCallback): void;", - "mainBuggyLine": "509" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "518", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "isTrash(): Promise;", - "mainBuggyLine": "518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "518", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [returns] tag is missing.", - "language": "ts", - "mainBuggyCode": "isTrash(): Promise;", - "mainBuggyLine": "518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "528", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " enum FileKey", - "mainBuggyLine": "528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "528", - "defectLevel": 2, - "defectType": "API_DOC_ENUM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [enum] tag is missing.", - "language": "ts", - "mainBuggyCode": " enum FileKey", - "mainBuggyLine": "528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "536", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "ID = \"file_id\"", - "mainBuggyLine": "536" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "544", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "RELATIVE_PATH = \"relative_path\"", - "mainBuggyLine": "544" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "552", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "DISPLAY_NAME = \"display_name\"", - "mainBuggyLine": "552" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "560", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "PARENT = \"parent\"", - "mainBuggyLine": "560" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "568", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "MIME_TYPE = \"mime_type\"", - "mainBuggyLine": "568" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "576", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "MEDIA_TYPE = \"media_type\"", - "mainBuggyLine": "576" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "584", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "SIZE = \"size\"", - "mainBuggyLine": "584" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "592", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "DATE_ADDED = \"date_added\"", - "mainBuggyLine": "592" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "600", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "DATE_MODIFIED = \"date_modified\"", - "mainBuggyLine": "600" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "608", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "DATE_TAKEN = \"date_taken\"", - "mainBuggyLine": "608" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "616", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "TITLE = \"title\"", - "mainBuggyLine": "616" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "624", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "ARTIST = \"artist\"", - "mainBuggyLine": "624" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "632", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "AUDIOALBUM = \"audio_album\"", - "mainBuggyLine": "632" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "640", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "DURATION = \"duration\"", - "mainBuggyLine": "640" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "648", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "WIDTH = \"width\"", - "mainBuggyLine": "648" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "656", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "HEIGHT = \"height\"", - "mainBuggyLine": "656" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "664", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "ORIENTATION = \"orientation\"", - "mainBuggyLine": "664" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "672", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "ALBUM_ID = \"bucket_id\"", - "mainBuggyLine": "672" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "680", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "ALBUM_NAME = \"bucket_display_name\"", - "mainBuggyLine": "680" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "690", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface MediaFetchOptions", - "mainBuggyLine": "690" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "690", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface MediaFetchOptions", - "mainBuggyLine": "690" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "698", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "selections: string;", - "mainBuggyLine": "698" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "698", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "selections: string;", - "mainBuggyLine": "698" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "706", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "selectionArgs: Array;", - "mainBuggyLine": "706" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "706", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "selectionArgs: Array;", - "mainBuggyLine": "706" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "714", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "order?: string;", - "mainBuggyLine": "714" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "714", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "order?: string;", - "mainBuggyLine": "714" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "722", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "uri?: string;", - "mainBuggyLine": "722" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "722", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uri?: string;", - "mainBuggyLine": "722" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "730", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "networkId?: string;", - "mainBuggyLine": "730" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "730", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "networkId?: string;", - "mainBuggyLine": "730" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "738", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "extendArgs?: string;", - "mainBuggyLine": "738" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "738", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "extendArgs?: string;", - "mainBuggyLine": "738" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "748", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " interface FetchFileResult", - "mainBuggyLine": "748" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "748", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface FetchFileResult", - "mainBuggyLine": "748" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "757", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getCount(): number;", - "mainBuggyLine": "757" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "757", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "getCount(): number;", - "mainBuggyLine": "757" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "768", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "isAfterLast(): boolean;", - "mainBuggyLine": "768" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "768", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "isAfterLast(): boolean;", - "mainBuggyLine": "768" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "776", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "close(): void;", - "mainBuggyLine": "776" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "785", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getFirstObject(callback: AsyncCallback): void;", - "mainBuggyLine": "785" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "785", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getFirstObject(callback: AsyncCallback): void;", - "mainBuggyLine": "785" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "794", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getFirstObject(): Promise;", - "mainBuggyLine": "794" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "794", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "getFirstObject(): Promise;", - "mainBuggyLine": "794" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "806", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getNextObject(callback: AsyncCallback): void;", - "mainBuggyLine": "806" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "806", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getNextObject(callback: AsyncCallback): void;", - "mainBuggyLine": "806" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "818", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getNextObject(): Promise;", - "mainBuggyLine": "818" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "818", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "getNextObject(): Promise;", - "mainBuggyLine": "818" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "827", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getLastObject(callback: AsyncCallback): void;", - "mainBuggyLine": "827" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "827", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getLastObject(callback: AsyncCallback): void;", - "mainBuggyLine": "827" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "836", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getLastObject(): Promise;", - "mainBuggyLine": "836" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "836", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "getLastObject(): Promise;", - "mainBuggyLine": "836" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "847", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getPositionObject(index: number, callback: AsyncCallback): void;", - "mainBuggyLine": "847" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "847", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getPositionObject(index: number, callback: AsyncCallback): void;", - "mainBuggyLine": "847" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "847", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "getPositionObject(index: number, callback: AsyncCallback): void;", - "mainBuggyLine": "847" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "858", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getPositionObject(index: number): Promise;", - "mainBuggyLine": "858" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "858", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getPositionObject(index: number): Promise;", - "mainBuggyLine": "858" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "858", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "getPositionObject(index: number): Promise;", - "mainBuggyLine": "858" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "870", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getAllObject(callback: AsyncCallback>): void;", - "mainBuggyLine": "870" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "870", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getAllObject(callback: AsyncCallback>): void;", - "mainBuggyLine": "870" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "882", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getAllObject(): Promise>;", - "mainBuggyLine": "882" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "882", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "getAllObject(): Promise>;", - "mainBuggyLine": "882" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "893", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface Album", - "mainBuggyLine": "893" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "901", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly albumId: number;", - "mainBuggyLine": "901" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "901", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly albumId: number;", - "mainBuggyLine": "901" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "909", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "albumName: string;", - "mainBuggyLine": "909" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "909", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "albumName: string;", - "mainBuggyLine": "909" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "917", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly albumUri: string;", - "mainBuggyLine": "917" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "917", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly albumUri: string;", - "mainBuggyLine": "917" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "925", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly dateModified: number;", - "mainBuggyLine": "925" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "925", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly dateModified: number;", - "mainBuggyLine": "925" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "933", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly count: number;", - "mainBuggyLine": "933" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "933", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly count: number;", - "mainBuggyLine": "933" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "941", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly relativePath: string;", - "mainBuggyLine": "941" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "941", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly relativePath: string;", - "mainBuggyLine": "941" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "949", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly coverUri: string;", - "mainBuggyLine": "949" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "949", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly coverUri: string;", - "mainBuggyLine": "949" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "960", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "commitModify(callback: AsyncCallback): void;", - "mainBuggyLine": "960" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "969", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "commitModify(): Promise;", - "mainBuggyLine": "969" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "969", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [returns] tag is missing.", - "language": "ts", - "mainBuggyCode": "commitModify(): Promise;", - "mainBuggyLine": "969" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "979", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getFileAssets(callback: AsyncCallback): void;", - "mainBuggyLine": "979" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "979", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getFileAssets(callback: AsyncCallback): void;", - "mainBuggyLine": "979" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "990", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getFileAssets(options: MediaFetchOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "990" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "990", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "getFileAssets(options: MediaFetchOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "990" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1001", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getFileAssets(options?: MediaFetchOptions): Promise;", - "mainBuggyLine": "1001" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1001", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "getFileAssets(options?: MediaFetchOptions): Promise;", - "mainBuggyLine": "1001" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1011", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " enum DirectoryType", - "mainBuggyLine": "1011" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1011", - "defectLevel": 2, - "defectType": "API_DOC_ENUM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [enum] tag is missing.", - "language": "ts", - "mainBuggyCode": " enum DirectoryType", - "mainBuggyLine": "1011" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1019", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "DIR_CAMERA = 0", - "mainBuggyLine": "1019" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1027", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "DIR_VIDEO", - "mainBuggyLine": "1027" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1035", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "DIR_IMAGE", - "mainBuggyLine": "1035" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1043", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "DIR_AUDIO", - "mainBuggyLine": "1043" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1051", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "DIR_DOCUMENTS", - "mainBuggyLine": "1051" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1059", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "DIR_DOWNLOAD", - "mainBuggyLine": "1059" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1070", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface MediaLibrary", - "mainBuggyLine": "1070" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1080", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getPublicDirectory(type: DirectoryType, callback: AsyncCallback): void;", - "mainBuggyLine": "1080" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1080", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "getPublicDirectory(type: DirectoryType, callback: AsyncCallback): void;", - "mainBuggyLine": "1080" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1090", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getPublicDirectory(type: DirectoryType): Promise;", - "mainBuggyLine": "1090" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1090", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getPublicDirectory(type: DirectoryType): Promise;", - "mainBuggyLine": "1090" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1090", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "getPublicDirectory(type: DirectoryType): Promise;", - "mainBuggyLine": "1090" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1102", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getFileAssets(options: MediaFetchOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "1102" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1114", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getFileAssets(options: MediaFetchOptions): Promise;", - "mainBuggyLine": "1114" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1114", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getFileAssets(options: MediaFetchOptions): Promise;", - "mainBuggyLine": "1114" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1114", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "getFileAssets(options: MediaFetchOptions): Promise;", - "mainBuggyLine": "1114" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "on(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback: Callback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "on(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback: Callback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "on(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback: Callback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "on(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback: Callback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "on(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback: Callback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "on(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback: Callback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "on(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback: Callback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "on(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback: Callback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "on(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback: Callback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "on(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback: Callback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "on(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback: Callback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "on(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback: Callback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "on(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback: Callback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "on(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback: Callback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "on(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback: Callback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "on(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback: Callback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "on(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback: Callback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "on(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback: Callback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "on(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback: Callback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "on(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback: Callback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1124", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "on(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback: Callback): void;", - "mainBuggyLine": "1124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "off(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback?: Callback): void;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "off(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback?: Callback): void;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "off(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback?: Callback): void;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "off(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback?: Callback): void;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "off(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback?: Callback): void;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "off(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback?: Callback): void;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "off(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback?: Callback): void;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "off(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback?: Callback): void;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "off(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback?: Callback): void;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "off(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback?: Callback): void;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "off(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback?: Callback): void;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "off(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback?: Callback): void;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "off(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback?: Callback): void;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "off(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback?: Callback): void;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "off(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback?: Callback): void;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "off(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback?: Callback): void;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "off(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback?: Callback): void;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "off(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback?: Callback): void;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "off(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback?: Callback): void;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "off(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback?: Callback): void;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1134", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "off(type: 'deviceChange' | 'albumChange' | 'imageChange' | 'audioChange' | 'videoChange' | 'fileChange' | 'remoteFileChange', callback?: Callback): void;", - "mainBuggyLine": "1134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1147", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "createAsset(mediaType: MediaType, displayName: string, relativePath: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1147", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "createAsset(mediaType: MediaType, displayName: string, relativePath: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1147", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "createAsset(mediaType: MediaType, displayName: string, relativePath: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1147", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [3] [param] tag is incorrect. Please check if it matches the type of the [3] parameter.", - "language": "ts", - "mainBuggyCode": "createAsset(mediaType: MediaType, displayName: string, relativePath: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1147", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [4] [param] tag is incorrect. Please check if it matches the type of the [4] parameter.", - "language": "ts", - "mainBuggyCode": "createAsset(mediaType: MediaType, displayName: string, relativePath: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1160", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "createAsset(mediaType: MediaType, displayName: string, relativePath: string): Promise;", - "mainBuggyLine": "1160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1160", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "createAsset(mediaType: MediaType, displayName: string, relativePath: string): Promise;", - "mainBuggyLine": "1160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1160", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "createAsset(mediaType: MediaType, displayName: string, relativePath: string): Promise;", - "mainBuggyLine": "1160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1160", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [3] [param] tag is incorrect. Please check if it matches the type of the [3] parameter.", - "language": "ts", - "mainBuggyCode": "createAsset(mediaType: MediaType, displayName: string, relativePath: string): Promise;", - "mainBuggyLine": "1160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1160", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "createAsset(mediaType: MediaType, displayName: string, relativePath: string): Promise;", - "mainBuggyLine": "1160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1172", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "deleteAsset(uri: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1172" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1172", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "deleteAsset(uri: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1172" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1172", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "deleteAsset(uri: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1172" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1184", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "deleteAsset(uri: string): Promise;", - "mainBuggyLine": "1184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1184", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "deleteAsset(uri: string): Promise;", - "mainBuggyLine": "1184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1195", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getAlbums(options: MediaFetchOptions, callback: AsyncCallback>): void;", - "mainBuggyLine": "1195" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1195", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "getAlbums(options: MediaFetchOptions, callback: AsyncCallback>): void;", - "mainBuggyLine": "1195" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1206", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getAlbums(options: MediaFetchOptions): Promise>;", - "mainBuggyLine": "1206" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1206", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "getAlbums(options: MediaFetchOptions): Promise>;", - "mainBuggyLine": "1206" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1216", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "storeMediaAsset(option: MediaAssetOption, callback: AsyncCallback): void;", - "mainBuggyLine": "1216" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1216", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "storeMediaAsset(option: MediaAssetOption, callback: AsyncCallback): void;", - "mainBuggyLine": "1216" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1216", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "storeMediaAsset(option: MediaAssetOption, callback: AsyncCallback): void;", - "mainBuggyLine": "1216" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1225", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "storeMediaAsset(option: MediaAssetOption): Promise;", - "mainBuggyLine": "1225" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1225", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "storeMediaAsset(option: MediaAssetOption): Promise;", - "mainBuggyLine": "1225" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1225", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "storeMediaAsset(option: MediaAssetOption): Promise;", - "mainBuggyLine": "1225" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1236", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "startImagePreview(images: Array, index: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1236" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1236", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "startImagePreview(images: Array, index: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1236" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1236", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "startImagePreview(images: Array, index: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1236" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1236", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [3] [param] tag is incorrect. Please check if it matches the type of the [3] parameter.", - "language": "ts", - "mainBuggyCode": "startImagePreview(images: Array, index: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1236" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1245", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "startImagePreview(images: Array, callback: AsyncCallback): void;", - "mainBuggyLine": "1245" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1245", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "startImagePreview(images: Array, callback: AsyncCallback): void;", - "mainBuggyLine": "1245" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1245", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "startImagePreview(images: Array, callback: AsyncCallback): void;", - "mainBuggyLine": "1245" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1256", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "startImagePreview(images: Array, index?: number): Promise;", - "mainBuggyLine": "1256" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1256", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "startImagePreview(images: Array, index?: number): Promise;", - "mainBuggyLine": "1256" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1256", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "startImagePreview(images: Array, index?: number): Promise;", - "mainBuggyLine": "1256" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1256", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "startImagePreview(images: Array, index?: number): Promise;", - "mainBuggyLine": "1256" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1266", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "startMediaSelect(option: MediaSelectOption, callback: AsyncCallback>): void;", - "mainBuggyLine": "1266" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1266", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "startMediaSelect(option: MediaSelectOption, callback: AsyncCallback>): void;", - "mainBuggyLine": "1266" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1266", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "startMediaSelect(option: MediaSelectOption, callback: AsyncCallback>): void;", - "mainBuggyLine": "1266" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1276", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "startMediaSelect(option: MediaSelectOption): Promise>;", - "mainBuggyLine": "1276" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1276", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "startMediaSelect(option: MediaSelectOption): Promise>;", - "mainBuggyLine": "1276" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1276", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "startMediaSelect(option: MediaSelectOption): Promise>;", - "mainBuggyLine": "1276" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1287", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getActivePeers(callback: AsyncCallback>): void;", - "mainBuggyLine": "1287" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1298", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getActivePeers(): Promise>;", - "mainBuggyLine": "1298" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1298", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "getActivePeers(): Promise>;", - "mainBuggyLine": "1298" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1309", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getAllPeers(callback: AsyncCallback>): void;", - "mainBuggyLine": "1309" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1309", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "getAllPeers(callback: AsyncCallback>): void;", - "mainBuggyLine": "1309" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1320", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "getAllPeers(): Promise>;", - "mainBuggyLine": "1320" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1320", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "getAllPeers(): Promise>;", - "mainBuggyLine": "1320" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1329", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "release(callback: AsyncCallback): void;", - "mainBuggyLine": "1329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1329", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "release(callback: AsyncCallback): void;", - "mainBuggyLine": "1329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1337", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "release(): Promise;", - "mainBuggyLine": "1337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1337", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [returns] tag is missing.", - "language": "ts", - "mainBuggyCode": "release(): Promise;", - "mainBuggyLine": "1337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1347", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface Size", - "mainBuggyLine": "1347" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1355", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "width: number;", - "mainBuggyLine": "1355" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1355", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "width: number;", - "mainBuggyLine": "1355" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1363", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "height: number;", - "mainBuggyLine": "1363" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1363", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "height: number;", - "mainBuggyLine": "1363" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1374", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface PeerInfo", - "mainBuggyLine": "1374" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1383", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly deviceName: string;", - "mainBuggyLine": "1383" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1383", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly deviceName: string;", - "mainBuggyLine": "1383" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1392", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly networkId: string;", - "mainBuggyLine": "1392" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1392", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly networkId: string;", - "mainBuggyLine": "1392" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1401", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly deviceType: DeviceType;", - "mainBuggyLine": "1401" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1401", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly deviceType: DeviceType;", - "mainBuggyLine": "1401" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1410", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "readonly isOnline: boolean;", - "mainBuggyLine": "1410" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1410", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly isOnline: boolean;", - "mainBuggyLine": "1410" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1421", - "defectLevel": 2, - "defectType": "API_DOC_ENUM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [enum] tag is missing.", - "language": "ts", - "mainBuggyCode": " enum DeviceType", - "mainBuggyLine": "1421" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1430", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "TYPE_UNKNOWN = 0", - "mainBuggyLine": "1430" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1439", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "TYPE_LAPTOP", - "mainBuggyLine": "1439" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1448", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "TYPE_PHONE", - "mainBuggyLine": "1448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1457", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "TYPE_TABLET", - "mainBuggyLine": "1457" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1466", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "TYPE_WATCH", - "mainBuggyLine": "1466" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1475", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "TYPE_CAR", - "mainBuggyLine": "1475" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts", - "codeContextStaerLine": "1484", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "TYPE_TV", - "mainBuggyLine": "1484" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.movingphotoview.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type MovingPhotoViewEventCallback = () => void;", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.systemSoundManager.d.ts", - "codeContextStaerLine": "671", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "addCustomizedTone(context: BaseContext, toneAttr: ToneAttrs, externalUri: string): Promise;", - "mainBuggyLine": "671" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.systemSoundManager.d.ts", - "codeContextStaerLine": "695", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "addCustomizedTone(context: BaseContext, toneAttr: ToneAttrs, fd: number, offset?: number, length?: number)\r\n : Promise;", - "mainBuggyLine": "695" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.systemSoundManager.d.ts", - "codeContextStaerLine": "715", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "removeCustomizedTone(context: BaseContext, uri:string): Promise;", - "mainBuggyLine": "715" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.systemSoundManager.d.ts", - "codeContextStaerLine": "147", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [TONE_CATEGORY_RINGTONE] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const TONE_CATEGORY_RINGTONE: number;", - "mainBuggyLine": "147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.systemSoundManager.d.ts", - "codeContextStaerLine": "156", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [TONE_CATEGORY_TEXT_MESSAGE] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const TONE_CATEGORY_TEXT_MESSAGE:number;", - "mainBuggyLine": "156" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.systemSoundManager.d.ts", - "codeContextStaerLine": "165", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [TONE_CATEGORY_NOTIFICATION] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const TONE_CATEGORY_NOTIFICATION:number;", - "mainBuggyLine": "165" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimedia.systemSoundManager.d.ts", - "codeContextStaerLine": "174", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [TONE_CATEGORY_ALARM] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const TONE_CATEGORY_ALARM:number;", - "mainBuggyLine": "174" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.gestureEvent.d.ts", - "codeContextStaerLine": "35", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: ActionType;", - "mainBuggyLine": "35" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.gestureEvent.d.ts", - "codeContextStaerLine": "43", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "scale: number;", - "mainBuggyLine": "43" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.gestureEvent.d.ts", - "codeContextStaerLine": "87", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: ActionType;", - "mainBuggyLine": "87" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.gestureEvent.d.ts", - "codeContextStaerLine": "95", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "x: number;", - "mainBuggyLine": "95" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.gestureEvent.d.ts", - "codeContextStaerLine": "103", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "y: number;", - "mainBuggyLine": "103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.gestureEvent.d.ts", - "codeContextStaerLine": "120", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: ActionType;", - "mainBuggyLine": "120" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.gestureEvent.d.ts", - "codeContextStaerLine": "128", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "x: number;", - "mainBuggyLine": "128" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.gestureEvent.d.ts", - "codeContextStaerLine": "136", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "y: number;", - "mainBuggyLine": "136" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.infraredEmitter.d.ts", - "codeContextStaerLine": "23", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_01", - "description": "API check error of [wrong value]: The [syscap] tag value is incorrect. Please check if the syscap field is configured.", - "language": "ts", - "mainBuggyCode": " declare namespace infraredEmitter", - "mainBuggyLine": "23" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.infraredEmitter.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_01", - "description": "API check error of [wrong value]: The [syscap] tag value is incorrect. Please check if the syscap field is configured.", - "language": "ts", - "mainBuggyCode": " interface InfraredFrequency", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.infraredEmitter.d.ts", - "codeContextStaerLine": "41", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_01", - "description": "API check error of [wrong value]: The [syscap] tag value is incorrect. Please check if the syscap field is configured.", - "language": "ts", - "mainBuggyCode": "max: number;", - "mainBuggyLine": "41" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.infraredEmitter.d.ts", - "codeContextStaerLine": "51", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_01", - "description": "API check error of [wrong value]: The [syscap] tag value is incorrect. Please check if the syscap field is configured.", - "language": "ts", - "mainBuggyCode": "min: number;", - "mainBuggyLine": "51" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.infraredEmitter.d.ts", - "codeContextStaerLine": "68", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function transmitInfrared(infraredFrequency: number, pattern: Array): void;", - "mainBuggyLine": "68" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.infraredEmitter.d.ts", - "codeContextStaerLine": "68", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_01", - "description": "API check error of [wrong value]: The [syscap] tag value is incorrect. Please check if the syscap field is configured.", - "language": "ts", - "mainBuggyCode": "function transmitInfrared(infraredFrequency: number, pattern: Array): void;", - "mainBuggyLine": "68" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.infraredEmitter.d.ts", - "codeContextStaerLine": "81", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function getInfraredFrequencies(): Array;", - "mainBuggyLine": "81" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.infraredEmitter.d.ts", - "codeContextStaerLine": "81", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_01", - "description": "API check error of [wrong value]: The [syscap] tag value is incorrect. Please check if the syscap field is configured.", - "language": "ts", - "mainBuggyCode": "function getInfraredFrequencies(): Array;", - "mainBuggyLine": "81" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDevice.d.ts", - "codeContextStaerLine": "38", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type ChangedType = 'add' | 'remove';", - "mainBuggyLine": "38" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDevice.d.ts", - "codeContextStaerLine": "46", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type SourceType = 'keyboard' | 'mouse' | 'touchpad' | 'touchscreen' | 'joystick' | 'trackball';", - "mainBuggyLine": "46" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDevice.d.ts", - "codeContextStaerLine": "54", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type AxisType =\r\n 'touchmajor'\r\n | 'touchminor'\r\n | 'orientation'\r\n | 'x'\r\n | 'y'\r\n | 'pressure'\r\n | 'toolminor'\r\n | 'toolmajor'\r\n | 'null';", - "mainBuggyLine": "54" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "31", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " declare namespace inputDeviceCooperate", - "mainBuggyLine": "31" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "31", - "defectLevel": 2, - "defectType": "API_DOC_NAMESPACE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [namespace] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare namespace inputDeviceCooperate", - "mainBuggyLine": "31" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "39", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " enum EventMsg", - "mainBuggyLine": "39" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "39", - "defectLevel": 2, - "defectType": "API_DOC_ENUM_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [enum] tag is missing.", - "language": "ts", - "mainBuggyCode": " enum EventMsg", - "mainBuggyLine": "39" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "45", - "defectLevel": 2, - "defectType": "API_DOC_SYSTEMAPI_02", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [systemapi] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MSG_COOPERATE_INFO_START = 200", - "mainBuggyLine": "45" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "45", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "MSG_COOPERATE_INFO_START = 200", - "mainBuggyLine": "45" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "52", - "defectLevel": 2, - "defectType": "API_DOC_SYSTEMAPI_02", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [systemapi] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MSG_COOPERATE_INFO_SUCCESS = 201", - "mainBuggyLine": "52" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "52", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "MSG_COOPERATE_INFO_SUCCESS = 201", - "mainBuggyLine": "52" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "59", - "defectLevel": 2, - "defectType": "API_DOC_SYSTEMAPI_02", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [systemapi] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MSG_COOPERATE_INFO_FAIL = 202", - "mainBuggyLine": "59" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "59", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "MSG_COOPERATE_INFO_FAIL = 202", - "mainBuggyLine": "59" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "66", - "defectLevel": 2, - "defectType": "API_DOC_SYSTEMAPI_02", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [systemapi] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MSG_COOPERATE_STATE_ON = 500", - "mainBuggyLine": "66" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "66", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "MSG_COOPERATE_STATE_ON = 500", - "mainBuggyLine": "66" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "73", - "defectLevel": 2, - "defectType": "API_DOC_SYSTEMAPI_02", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [systemapi] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MSG_COOPERATE_STATE_OFF = 501", - "mainBuggyLine": "73" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "73", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "MSG_COOPERATE_STATE_OFF = 501", - "mainBuggyLine": "73" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "function enable(enable: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "function enable(enable: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "function enable(enable: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "97", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "function enable(enable: boolean): Promise;", - "mainBuggyLine": "97" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "97", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [returns] tag is missing.", - "language": "ts", - "mainBuggyCode": "function enable(enable: boolean): Promise;", - "mainBuggyLine": "97" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "97", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "function enable(enable: boolean): Promise;", - "mainBuggyLine": "97" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "112", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "function start(sinkDeviceDescriptor: string, srcInputDeviceId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "112" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "112", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "function start(sinkDeviceDescriptor: string, srcInputDeviceId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "112" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "112", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "function start(sinkDeviceDescriptor: string, srcInputDeviceId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "112" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "112", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [3] [param] tag is incorrect. Please check if it matches the type of the [3] parameter.", - "language": "ts", - "mainBuggyCode": "function start(sinkDeviceDescriptor: string, srcInputDeviceId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "112" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "126", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "function start(sinkDeviceDescriptor: string, srcInputDeviceId: number): Promise;", - "mainBuggyLine": "126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "126", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [returns] tag is missing.", - "language": "ts", - "mainBuggyCode": "function start(sinkDeviceDescriptor: string, srcInputDeviceId: number): Promise;", - "mainBuggyLine": "126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "126", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "function start(sinkDeviceDescriptor: string, srcInputDeviceId: number): Promise;", - "mainBuggyLine": "126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "126", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "function start(sinkDeviceDescriptor: string, srcInputDeviceId: number): Promise;", - "mainBuggyLine": "126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "137", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "function stop(callback: AsyncCallback): void;", - "mainBuggyLine": "137" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "137", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "function stop(callback: AsyncCallback): void;", - "mainBuggyLine": "137" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "146", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "function stop(): Promise;", - "mainBuggyLine": "146" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "146", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [returns] tag is missing.", - "language": "ts", - "mainBuggyCode": "function stop(): Promise;", - "mainBuggyLine": "146" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "158", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "function getState(deviceDescriptor: string, callback: AsyncCallback<{ state: boolean }>): void;", - "mainBuggyLine": "158" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "158", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "function getState(deviceDescriptor: string, callback: AsyncCallback<{ state: boolean }>): void;", - "mainBuggyLine": "158" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "158", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "function getState(deviceDescriptor: string, callback: AsyncCallback<{ state: boolean }>): void;", - "mainBuggyLine": "158" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "169", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "function getState(deviceDescriptor: string): Promise<{ state: boolean }>;", - "mainBuggyLine": "169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "169", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [returns] tag is missing.", - "language": "ts", - "mainBuggyCode": "function getState(deviceDescriptor: string): Promise<{ state: boolean }>;", - "mainBuggyLine": "169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "169", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "function getState(deviceDescriptor: string): Promise<{ state: boolean }>;", - "mainBuggyLine": "169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "182", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "function on(type: 'cooperation', callback: AsyncCallback<{ deviceDescriptor: string, eventMsg: EventMsg }>): void;", - "mainBuggyLine": "182" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "182", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "function on(type: 'cooperation', callback: AsyncCallback<{ deviceDescriptor: string, eventMsg: EventMsg }>): void;", - "mainBuggyLine": "182" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "182", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "function on(type: 'cooperation', callback: AsyncCallback<{ deviceDescriptor: string, eventMsg: EventMsg }>): void;", - "mainBuggyLine": "182" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "182", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_01", - "description": "API check error of [wrong value]: The [returns] tag was used incorrectly. The returns tag should not be used when the return type is void.", - "language": "ts", - "mainBuggyCode": "function on(type: 'cooperation', callback: AsyncCallback<{ deviceDescriptor: string, eventMsg: EventMsg }>): void;", - "mainBuggyLine": "182" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "194", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "function off(type: 'cooperation', callback?: AsyncCallback): void;", - "mainBuggyLine": "194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "194", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "function off(type: 'cooperation', callback?: AsyncCallback): void;", - "mainBuggyLine": "194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts", - "codeContextStaerLine": "194", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [2] [param] tag is incorrect. Please check if it matches the type of the [2] parameter.", - "language": "ts", - "mainBuggyCode": "function off(type: 'cooperation', callback?: AsyncCallback): void;", - "mainBuggyLine": "194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputEvent.d.ts", - "codeContextStaerLine": "35", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "id: number;", - "mainBuggyLine": "35" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputEvent.d.ts", - "codeContextStaerLine": "43", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: number;", - "mainBuggyLine": "43" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputEvent.d.ts", - "codeContextStaerLine": "51", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "actionTime: number;", - "mainBuggyLine": "51" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputEvent.d.ts", - "codeContextStaerLine": "59", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "screenId: number;", - "mainBuggyLine": "59" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputEvent.d.ts", - "codeContextStaerLine": "67", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "windowId: number;", - "mainBuggyLine": "67" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputEventClient.d.ts", - "codeContextStaerLine": "48", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isPressed: boolean;", - "mainBuggyLine": "48" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputEventClient.d.ts", - "codeContextStaerLine": "57", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "keyCode: number;", - "mainBuggyLine": "57" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputEventClient.d.ts", - "codeContextStaerLine": "66", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "keyDownDuration: number;", - "mainBuggyLine": "66" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputEventClient.d.ts", - "codeContextStaerLine": "75", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isIntercepted: boolean;", - "mainBuggyLine": "75" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputMonitor.d.ts", - "codeContextStaerLine": "39", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " declare namespace inputMonitor", - "mainBuggyLine": "39" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputMonitor.d.ts", - "codeContextStaerLine": "50", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " interface TouchEventReceiver", - "mainBuggyLine": "50" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimodalInput.inputMonitor.d.ts", - "codeContextStaerLine": "349", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_fingerprint] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'fingerprint', receiver: Callback): void;", - "mainBuggyLine": "349" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.multimodalInput.inputMonitor.d.ts", - "codeContextStaerLine": "364", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_fingerprint] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'fingerprint', receiver?: Callback): void;", - "mainBuggyLine": "364" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.keyEvent.d.ts", - "codeContextStaerLine": "70", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "code: KeyCode;", - "mainBuggyLine": "70" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.keyEvent.d.ts", - "codeContextStaerLine": "78", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "pressedTime: number;", - "mainBuggyLine": "78" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.keyEvent.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: number;", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.keyEvent.d.ts", - "codeContextStaerLine": "96", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare interface KeyEvent", - "mainBuggyLine": "96" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.keyEvent.d.ts", - "codeContextStaerLine": "103", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "action: Action;", - "mainBuggyLine": "103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.keyEvent.d.ts", - "codeContextStaerLine": "111", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "key: Key;", - "mainBuggyLine": "111" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.keyEvent.d.ts", - "codeContextStaerLine": "119", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "unicodeChar: number;", - "mainBuggyLine": "119" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.keyEvent.d.ts", - "codeContextStaerLine": "127", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "keys: Key[];", - "mainBuggyLine": "127" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.keyEvent.d.ts", - "codeContextStaerLine": "135", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ctrlKey: boolean;", - "mainBuggyLine": "135" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.keyEvent.d.ts", - "codeContextStaerLine": "143", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "altKey: boolean;", - "mainBuggyLine": "143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.keyEvent.d.ts", - "codeContextStaerLine": "151", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "shiftKey: boolean;", - "mainBuggyLine": "151" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.keyEvent.d.ts", - "codeContextStaerLine": "159", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "logoKey: boolean;", - "mainBuggyLine": "159" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.keyEvent.d.ts", - "codeContextStaerLine": "167", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fnKey: boolean;", - "mainBuggyLine": "167" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.keyEvent.d.ts", - "codeContextStaerLine": "175", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "capsLock: boolean;", - "mainBuggyLine": "175" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.keyEvent.d.ts", - "codeContextStaerLine": "183", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "numLock: boolean;", - "mainBuggyLine": "183" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.keyEvent.d.ts", - "codeContextStaerLine": "191", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "scrollLock: boolean;", - "mainBuggyLine": "191" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "225", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "axis: Axis;", - "mainBuggyLine": "225" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "233", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: number;", - "mainBuggyLine": "233" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "284", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare interface MouseEvent", - "mainBuggyLine": "284" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "291", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "action: Action;", - "mainBuggyLine": "291" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "299", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "screenX: number;", - "mainBuggyLine": "299" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "307", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "screenY: number;", - "mainBuggyLine": "307" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "315", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "windowX: number;", - "mainBuggyLine": "315" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "323", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "windowY: number;", - "mainBuggyLine": "323" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "332", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rawDeltaX: number;", - "mainBuggyLine": "332" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "340", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rawDeltaY: number;", - "mainBuggyLine": "340" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "348", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "button: Button;", - "mainBuggyLine": "348" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "356", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "pressedButtons: Button[];", - "mainBuggyLine": "356" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "364", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "axes: AxisValue[];", - "mainBuggyLine": "364" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "372", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "pressedKeys: KeyCode[];", - "mainBuggyLine": "372" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "380", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ctrlKey: boolean;", - "mainBuggyLine": "380" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "388", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "altKey: boolean;", - "mainBuggyLine": "388" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "396", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "shiftKey: boolean;", - "mainBuggyLine": "396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "404", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "logoKey: boolean;", - "mainBuggyLine": "404" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "412", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fnKey: boolean;", - "mainBuggyLine": "412" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "420", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "capsLock: boolean;", - "mainBuggyLine": "420" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "428", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "numLock: boolean;", - "mainBuggyLine": "428" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts", - "codeContextStaerLine": "436", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "scrollLock: boolean;", - "mainBuggyLine": "436" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "184", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "id: number;", - "mainBuggyLine": "184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "192", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "pressedTime: number;", - "mainBuggyLine": "192" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "200", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "screenX: number;", - "mainBuggyLine": "200" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "208", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "screenY: number;", - "mainBuggyLine": "208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "216", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "windowX: number;", - "mainBuggyLine": "216" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "224", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "windowY: number;", - "mainBuggyLine": "224" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "232", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "pressure: number;", - "mainBuggyLine": "232" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "240", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "width: number;", - "mainBuggyLine": "240" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "248", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "height: number;", - "mainBuggyLine": "248" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "256", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "tiltX: number;", - "mainBuggyLine": "256" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "264", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "tiltY: number;", - "mainBuggyLine": "264" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "272", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "toolX: number;", - "mainBuggyLine": "272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "280", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "toolY: number;", - "mainBuggyLine": "280" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "288", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "toolWidth: number;", - "mainBuggyLine": "288" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "296", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "toolHeight: number;", - "mainBuggyLine": "296" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "304", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rawX: number;", - "mainBuggyLine": "304" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "312", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rawY: number;", - "mainBuggyLine": "312" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "320", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "toolType: ToolType;", - "mainBuggyLine": "320" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "330", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export declare interface TouchEvent", - "mainBuggyLine": "330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "337", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "action: Action;", - "mainBuggyLine": "337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "345", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "touch: Touch;", - "mainBuggyLine": "345" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "353", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "touches: Touch[];", - "mainBuggyLine": "353" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts", - "codeContextStaerLine": "361", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "sourceType: SourceType;", - "mainBuggyLine": "361" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "65", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type HttpRequest = http.HttpRequest;", - "mainBuggyLine": "65" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "78", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type TCPSocket = socket.TCPSocket;", - "mainBuggyLine": "78" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "78", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type TCPSocket = socket.TCPSocket;", - "mainBuggyLine": "78" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "91", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type UDPSocket = socket.UDPSocket;", - "mainBuggyLine": "91" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "91", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type UDPSocket = socket.UDPSocket;", - "mainBuggyLine": "91" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "216", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAllNets(callback: AsyncCallback>): void;", - "mainBuggyLine": "216" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "229", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAllNets(): Promise>;", - "mainBuggyLine": "229" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "242", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAllNetsSync(): Array;", - "mainBuggyLine": "242" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "258", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getConnectionProperties(netHandle: NetHandle, callback: AsyncCallback): void;", - "mainBuggyLine": "258" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "274", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getConnectionProperties(netHandle: NetHandle): Promise;", - "mainBuggyLine": "274" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "290", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getConnectionPropertiesSync(netHandle: NetHandle): ConnectionProperties;", - "mainBuggyLine": "290" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "397", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isDefaultNetMetered(callback: AsyncCallback): void;", - "mainBuggyLine": "397" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "409", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isDefaultNetMetered(): Promise;", - "mainBuggyLine": "409" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "421", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isDefaultNetMeteredSync(): boolean;", - "mainBuggyLine": "421" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "448", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function hasDefaultNet(callback: AsyncCallback): void;", - "mainBuggyLine": "448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "472", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function hasDefaultNet(): Promise;", - "mainBuggyLine": "472" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "484", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function hasDefaultNetSync(): boolean;", - "mainBuggyLine": "484" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "500", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function enableAirplaneMode(callback: AsyncCallback): void;", - "mainBuggyLine": "500" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "515", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function enableAirplaneMode(): Promise;", - "mainBuggyLine": "515" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "531", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function disableAirplaneMode(callback: AsyncCallback): void;", - "mainBuggyLine": "531" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "546", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function disableAirplaneMode(): Promise;", - "mainBuggyLine": "546" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "561", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function reportNetConnected(netHandle: NetHandle, callback: AsyncCallback): void;", - "mainBuggyLine": "561" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "576", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function reportNetConnected(netHandle: NetHandle): Promise;", - "mainBuggyLine": "576" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "591", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function reportNetDisconnected(netHandle: NetHandle, callback: AsyncCallback): void;", - "mainBuggyLine": "591" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "606", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function reportNetDisconnected(netHandle: NetHandle): Promise;", - "mainBuggyLine": "606" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "621", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAddressesByName(host: string, callback: AsyncCallback>): void;", - "mainBuggyLine": "621" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "636", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAddressesByName(host: string): Promise>;", - "mainBuggyLine": "636" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "648", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAppNet(callback: AsyncCallback): void;", - "mainBuggyLine": "648" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "658", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAppNet(): Promise;", - "mainBuggyLine": "658" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "668", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAppNetSync(): NetHandle;", - "mainBuggyLine": "668" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "685", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setAppNet(netHandle: NetHandle, callback: AsyncCallback): void;", - "mainBuggyLine": "685" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "702", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setAppNet(netHandle: NetHandle): Promise;", - "mainBuggyLine": "702" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "718", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getDefaultHttpProxy(callback: AsyncCallback): void;", - "mainBuggyLine": "718" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "734", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getDefaultHttpProxy(): Promise;", - "mainBuggyLine": "734" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "747", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getGlobalHttpProxy(callback: AsyncCallback): void;", - "mainBuggyLine": "747" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "759", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getGlobalHttpProxy(): Promise;", - "mainBuggyLine": "759" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "769", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setAppHttpProxy(httpProxy: HttpProxy): void;", - "mainBuggyLine": "769" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "786", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setGlobalHttpProxy(httpProxy: HttpProxy, callback: AsyncCallback): void;", - "mainBuggyLine": "786" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "803", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setGlobalHttpProxy(httpProxy: HttpProxy): Promise;", - "mainBuggyLine": "803" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "819", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function addCustomDnsRule(host: string, ip: Array, callback: AsyncCallback): void;", - "mainBuggyLine": "819" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "835", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function addCustomDnsRule(host: string, ip: Array): Promise;", - "mainBuggyLine": "835" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "850", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function removeCustomDnsRule(host: string, callback: AsyncCallback): void;", - "mainBuggyLine": "850" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "865", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function removeCustomDnsRule(host: string): Promise;", - "mainBuggyLine": "865" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "879", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function clearCustomDnsRules(callback: AsyncCallback): void;", - "mainBuggyLine": "879" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "892", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function clearCustomDnsRules(): Promise;", - "mainBuggyLine": "892" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "908", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function factoryReset(): Promise;", - "mainBuggyLine": "908" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "972", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'netBlockStatusChange', callback: Callback): void;", - "mainBuggyLine": "972" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1014", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'netConnectionPropertiesChange', callback: Callback): void;", - "mainBuggyLine": "1014" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1317", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bindSocket(socketParam: TCPSocket | UDPSocket, callback: AsyncCallback): void;", - "mainBuggyLine": "1317" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1332", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bindSocket(socketParam: TCPSocket | UDPSocket): Promise;", - "mainBuggyLine": "1332" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1347", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAddressesByName(host: string, callback: AsyncCallback>): void;", - "mainBuggyLine": "1347" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1362", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAddressesByName(host: string): Promise>;", - "mainBuggyLine": "1362" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1377", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAddressByName(host: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1377" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1392", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAddressByName(host: string): Promise;", - "mainBuggyLine": "1392" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1423", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "linkUpBandwidthKbps?: number;", - "mainBuggyLine": "1423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1431", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "linkDownBandwidthKbps?: number;", - "mainBuggyLine": "1431" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1478", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface NetConnectionPropertyInfo", - "mainBuggyLine": "1478" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1485", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "netHandle: NetHandle;", - "mainBuggyLine": "1485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1492", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "connectionProperties: ConnectionProperties;", - "mainBuggyLine": "1492" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1501", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface NetBlockStatusInfo", - "mainBuggyLine": "1501" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1508", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "netHandle: NetHandle;", - "mainBuggyLine": "1508" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1515", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "blocked: boolean;", - "mainBuggyLine": "1515" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1685", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "BEARER_VPN = 4", - "mainBuggyLine": "1685" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1694", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface ConnectionProperties", - "mainBuggyLine": "1694" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1701", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "interfaceName: string;", - "mainBuggyLine": "1701" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1708", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "domains: string;", - "mainBuggyLine": "1708" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1715", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "linkAddresses: Array;", - "mainBuggyLine": "1715" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1723", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dnses: Array;", - "mainBuggyLine": "1723" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1731", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "routes: Array;", - "mainBuggyLine": "1731" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1739", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "mtu: number;", - "mainBuggyLine": "1739" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1748", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface RouteInfo", - "mainBuggyLine": "1748" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1755", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "interface: string;", - "mainBuggyLine": "1755" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1763", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "destination: LinkAddress;", - "mainBuggyLine": "1763" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1771", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "gateway: NetAddress;", - "mainBuggyLine": "1771" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1779", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hasGateway: boolean;", - "mainBuggyLine": "1779" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1787", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isDefaultRoute: boolean;", - "mainBuggyLine": "1787" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1796", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface LinkAddress", - "mainBuggyLine": "1796" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1803", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "address: NetAddress;", - "mainBuggyLine": "1803" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1810", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "prefixLength: number;", - "mainBuggyLine": "1810" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1819", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface NetAddress", - "mainBuggyLine": "1819" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1826", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "address: string;", - "mainBuggyLine": "1826" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1834", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "family?: number;", - "mainBuggyLine": "1834" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1842", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "port?: number;", - "mainBuggyLine": "1842" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1895", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "username?: string;", - "mainBuggyLine": "1895" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts", - "codeContextStaerLine": "1903", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "password?: string;", - "mainBuggyLine": "1903" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.ethernet.d.ts", - "codeContextStaerLine": "35", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type HttpProxy = connection.HttpProxy;", - "mainBuggyLine": "35" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "385", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "resumeFrom?: number;", - "mainBuggyLine": "385" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "404", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "resumeTo?: number;", - "mainBuggyLine": "404" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "419", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "clientCert?: ClientCert;", - "mainBuggyLine": "419" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "438", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dnsOverHttps?: string;", - "mainBuggyLine": "438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "457", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dnsServers?: Array;", - "mainBuggyLine": "457" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "474", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maxLimit?: number;", - "mainBuggyLine": "474" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "493", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "multiFormDataList?: Array;", - "mainBuggyLine": "493" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "502", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "certificatePinning?: CertificatePinning | CertificatePinning[];", - "mainBuggyLine": "502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "502", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_01", - "description": "API check error of [wrong value]: The [type] tag type is incorrect. Please check if the type matches the attribute type.", - "language": "ts", - "mainBuggyCode": "certificatePinning?: CertificatePinning | CertificatePinning[];", - "mainBuggyLine": "502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "518", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface MultiFormData", - "mainBuggyLine": "518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "532", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "532" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "547", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contentType: string;", - "mainBuggyLine": "547" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "562", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "remoteFileName?: string;", - "mainBuggyLine": "562" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "577", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "data?: string | Object | ArrayBuffer;", - "mainBuggyLine": "577" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "598", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "filePath?: string;", - "mainBuggyLine": "598" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "614", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum CertType", - "mainBuggyLine": "614" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "626", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PEM = 'PEM'", - "mainBuggyLine": "626" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "639", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DER = 'DER'", - "mainBuggyLine": "639" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "652", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "P12 = 'P12'", - "mainBuggyLine": "652" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "670", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface ClientCert", - "mainBuggyLine": "670" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "684", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "certPath: string;", - "mainBuggyLine": "684" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "699", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "certType?: CertType;", - "mainBuggyLine": "699" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "714", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "keyPath: string;", - "mainBuggyLine": "714" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "729", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "keyPassword?: string;", - "mainBuggyLine": "729" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "738", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface CertificatePinning", - "mainBuggyLine": "738" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "745", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "publicKeyHash: string;", - "mainBuggyLine": "745" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "752", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hashAlgorithm: 'SHA-256';", - "mainBuggyLine": "752" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "1192", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "requestInStream(url: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1192" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "1234", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "requestInStream(url: string, options: HttpRequestOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "1234" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "1276", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "requestInStream(url: string, options?: HttpRequestOptions): Promise;", - "mainBuggyLine": "1276" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "1307", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: \"headerReceive\", callback: AsyncCallback): void;", - "mainBuggyLine": "1307" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "1318", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: \"headerReceive\", callback?: AsyncCallback): void;", - "mainBuggyLine": "1318" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "1387", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "once(type: \"headersReceive\", callback: Callback): void;", - "mainBuggyLine": "1387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "1396", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: \"dataReceive\", callback: Callback): void;", - "mainBuggyLine": "1396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "1405", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: \"dataReceive\", callback?: Callback): void;", - "mainBuggyLine": "1405" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "1414", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: \"dataEnd\", callback: Callback): void;", - "mainBuggyLine": "1414" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "1423", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: \"dataEnd\", callback?: Callback): void;", - "mainBuggyLine": "1423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "1447", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'dataReceiveProgress', callback: Callback): void;", - "mainBuggyLine": "1447" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "1471", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'dataReceiveProgress', callback?: Callback): void;", - "mainBuggyLine": "1471" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "1488", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'dataSendProgress', callback: Callback): void", - "mainBuggyLine": "1488" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "1505", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'dataSendProgress', callback?: Callback): void", - "mainBuggyLine": "1505" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "2507", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HTTP3", - "mainBuggyLine": "2507" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "2752", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "performanceTiming: PerformanceTiming;", - "mainBuggyLine": "2752" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "2768", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface PerformanceTiming", - "mainBuggyLine": "2768" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "2782", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dnsTiming: number;", - "mainBuggyLine": "2782" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "2797", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "tcpTiming: number;", - "mainBuggyLine": "2797" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "2812", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "tlsTiming: number;", - "mainBuggyLine": "2812" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "2827", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "firstSendTiming: number;", - "mainBuggyLine": "2827" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "2842", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "firstReceiveTiming: number;", - "mainBuggyLine": "2842" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "2857", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "totalFinishTiming: number;", - "mainBuggyLine": "2857" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "2872", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "redirectTiming: number;", - "mainBuggyLine": "2872" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "2887", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "responseHeaderTiming: number;", - "mainBuggyLine": "2887" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "2902", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "responseBodyTiming: number;", - "mainBuggyLine": "2902" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "2917", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "totalTiming: number;", - "mainBuggyLine": "2917" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "2933", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface DataReceiveProgressInfo", - "mainBuggyLine": "2933" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "2947", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "receiveSize: number;", - "mainBuggyLine": "2947" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "2961", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "totalSize: number;", - "mainBuggyLine": "2961" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "2977", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface DataSendProgressInfo", - "mainBuggyLine": "2977" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "2991", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sendSize: number;", - "mainBuggyLine": "2991" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts", - "codeContextStaerLine": "3005", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "totalSize: number;", - "mainBuggyLine": "3005" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.http.d.ts", - "codeContextStaerLine": "1447", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_dataReceiveProgress] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'dataReceiveProgress', callback: Callback): void;", - "mainBuggyLine": "1447" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.http.d.ts", - "codeContextStaerLine": "1471", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_dataReceiveProgress] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'dataReceiveProgress', callback?: Callback): void;", - "mainBuggyLine": "1471" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.http.d.ts", - "codeContextStaerLine": "1488", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_dataSendProgress] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'dataSendProgress', callback: Callback): void", - "mainBuggyLine": "1488" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.http.d.ts", - "codeContextStaerLine": "1505", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_dataSendProgress] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'dataSendProgress', callback?: Callback): void", - "mainBuggyLine": "1505" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.mdns.d.ts", - "codeContextStaerLine": "44", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type NetAddress = connection.NetAddress;", - "mainBuggyLine": "44" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.mdns.d.ts", - "codeContextStaerLine": "44", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type NetAddress = connection.NetAddress;", - "mainBuggyLine": "44" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.policy.d.ts", - "codeContextStaerLine": "36", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type NetBearType = connection.NetBearType;", - "mainBuggyLine": "36" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.sharing.d.ts", - "codeContextStaerLine": "36", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type NetHandle = connection.NetHandle;", - "mainBuggyLine": "36" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "291", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface UDPExtraOptions", - "mainBuggyLine": "291" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "983", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface MulticastSocket", - "mainBuggyLine": "983" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "2044", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface TCPExtraOptions", - "mainBuggyLine": "2044" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "1448", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_message] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'message', callback: Callback): void;", - "mainBuggyLine": "1448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "1467", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_message] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'message', callback?: Callback): void;", - "mainBuggyLine": "1467" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "1486", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_connect] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'connect', callback: Callback): void;", - "mainBuggyLine": "1486" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "1505", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_connect] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'connect', callback?: Callback): void;", - "mainBuggyLine": "1505" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "1524", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_close] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'close', callback: Callback): void;", - "mainBuggyLine": "1524" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "1543", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_close] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'close', callback?: Callback): void;", - "mainBuggyLine": "1543" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "1562", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "1562" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "1581", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "1581" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "1668", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_message] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'message', callback: Callback): void;", - "mainBuggyLine": "1668" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "1687", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_message] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'message', callback?: Callback): void;", - "mainBuggyLine": "1687" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "1706", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_close] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'close', callback: Callback): void;", - "mainBuggyLine": "1706" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "1725", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_close] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'close', callback?: Callback): void;", - "mainBuggyLine": "1725" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "1744", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "1744" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "1763", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "1763" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "1881", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_connect] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'connect', callback: Callback): void;", - "mainBuggyLine": "1881" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "1900", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_connect] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'connect', callback?: Callback): void;", - "mainBuggyLine": "1900" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "1919", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'error', callback: ErrorCallback): void;", - "mainBuggyLine": "1919" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "1938", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_error] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'error', callback?: ErrorCallback): void;", - "mainBuggyLine": "1938" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "3701", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_message] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'message', callback: Callback): void;", - "mainBuggyLine": "3701" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "3728", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_message] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'message', callback?: Callback): void;", - "mainBuggyLine": "3728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "4127", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_message] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'message', callback: Callback): void;", - "mainBuggyLine": "4127" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.socket.d.ts", - "codeContextStaerLine": "4154", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_message] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'message', callback?: Callback): void;", - "mainBuggyLine": "4154" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.statistics.d.ts", - "codeContextStaerLine": "36", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type NetBearType = connection.NetBearType;", - "mainBuggyLine": "36" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.statistics.d.ts", - "codeContextStaerLine": "578", - "defectLevel": 2, - "defectType": "API_DEFINE_UNALLOWABLE_02", - "description": "API check error of [forbidden word]: Illegal [this] keyword used in the API.", - "language": "ts", - "mainBuggyCode": "export type NetStatsInfoSequence = {\n /**\n * Start time for querying traffic.\n * @type { number }\n * @syscap SystemCapability.Communication.NetManager.Core\n * @systemapi Hide this for inner system use.\n * @since 12\n */\n startTime: number;\n /**\n * End time for querying traffic.\n * @type { number }\n * @syscap SystemCapability.Communication.NetManager.Core\n * @systemapi Hide this for inner system use.\n * @since 12\n */\n endTime: number;\n /**\n * Detailed information of statistics.\n * @type { NetStatsInfo }\n * @syscap SystemCapability.Communication.NetManager.Core\n * @systemapi Hide this for inner system use.\n * @since 12\n */\n info: NetStatsInfo;\n }[];", - "mainBuggyLine": "578" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.statistics.d.ts", - "codeContextStaerLine": "578", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NetStatsInfoSequence = {\n /**\n * Start time for querying traffic.\n * @type { number }\n * @syscap SystemCapability.Communication.NetManager.Core\n * @systemapi Hide this for inner system use.\n * @since 12\n */\n startTime: number;\n /**\n * End time for querying traffic.\n * @type { number }\n * @syscap SystemCapability.Communication.NetManager.Core\n * @systemapi Hide this for inner system use.\n * @since 12\n */\n endTime: number;\n /**\n * Detailed information of statistics.\n * @type { NetStatsInfo }\n * @syscap SystemCapability.Communication.NetManager.Core\n * @systemapi Hide this for inner system use.\n * @since 12\n */\n info: NetStatsInfo;\n }[];", - "mainBuggyLine": "578" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.statistics.d.ts", - "codeContextStaerLine": "611", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type UidNetStatsInfo = {\n [uid: number]: NetStatsInfo;\n };", - "mainBuggyLine": "611" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.vpn.d.ts", - "codeContextStaerLine": "37", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type LinkAddress = connection.LinkAddress;", - "mainBuggyLine": "37" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.vpn.d.ts", - "codeContextStaerLine": "44", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type RouteInfo = connection.RouteInfo;", - "mainBuggyLine": "44" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.vpn.d.ts", - "codeContextStaerLine": "51", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type AbilityContext = _AbilityContext;", - "mainBuggyLine": "51" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.vpnExtension.d.ts", - "codeContextStaerLine": "37", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type LinkAddress = connection.LinkAddress;", - "mainBuggyLine": "37" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.vpnExtension.d.ts", - "codeContextStaerLine": "44", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type RouteInfo = connection.RouteInfo;", - "mainBuggyLine": "44" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.vpnExtension.d.ts", - "codeContextStaerLine": "53", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type VpnExtensionContext = _VpnExtensionContext;", - "mainBuggyLine": "53" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.webSocket.d.ts", - "codeContextStaerLine": "51", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type HttpProxy = connection.HttpProxy;", - "mainBuggyLine": "51" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.webSocket.d.ts", - "codeContextStaerLine": "134", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "caPath?: string;", - "mainBuggyLine": "134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.webSocket.d.ts", - "codeContextStaerLine": "149", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "clientCert?: ClientCert;", - "mainBuggyLine": "149" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.webSocket.d.ts", - "codeContextStaerLine": "157", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "proxy?: ProxyConfiguration;", - "mainBuggyLine": "157" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.webSocket.d.ts", - "codeContextStaerLine": "165", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "protocol?: string;", - "mainBuggyLine": "165" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.webSocket.d.ts", - "codeContextStaerLine": "177", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type ProxyConfiguration = 'system' | 'no-proxy' | HttpProxy;", - "mainBuggyLine": "177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.webSocket.d.ts", - "codeContextStaerLine": "177", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "export type ProxyConfiguration = 'system' | 'no-proxy' | HttpProxy;", - "mainBuggyLine": "177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.webSocket.d.ts", - "codeContextStaerLine": "196", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface ClientCert", - "mainBuggyLine": "196" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.webSocket.d.ts", - "codeContextStaerLine": "210", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "certPath: string;", - "mainBuggyLine": "210" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.webSocket.d.ts", - "codeContextStaerLine": "225", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "keyPath: string;", - "mainBuggyLine": "225" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.webSocket.d.ts", - "codeContextStaerLine": "240", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "keyPassword?: string;", - "mainBuggyLine": "240" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.webSocket.d.ts", - "codeContextStaerLine": "367", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export type ResponseHeaders = {\r\n [k: string]: string | string[] | undefined;\r\n }", - "mainBuggyLine": "367" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.webSocket.d.ts", - "codeContextStaerLine": "367", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "export type ResponseHeaders = {\r\n [k: string]: string | string[] | undefined;\r\n }", - "mainBuggyLine": "367" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.webSocket.d.ts", - "codeContextStaerLine": "914", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'dataEnd', callback: Callback): void;", - "mainBuggyLine": "914" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.webSocket.d.ts", - "codeContextStaerLine": "931", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'dataEnd', callback?: Callback): void;", - "mainBuggyLine": "931" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.webSocket.d.ts", - "codeContextStaerLine": "940", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'headerReceive', callback: Callback): void;", - "mainBuggyLine": "940" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.webSocket.d.ts", - "codeContextStaerLine": "949", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'headerReceive', callback?: Callback): void;", - "mainBuggyLine": "949" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.webSocket.d.ts", - "codeContextStaerLine": "914", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_dataEnd] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'dataEnd', callback: Callback): void;", - "mainBuggyLine": "914" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.webSocket.d.ts", - "codeContextStaerLine": "931", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_dataEnd] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'dataEnd', callback?: Callback): void;", - "mainBuggyLine": "931" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.webSocket.d.ts", - "codeContextStaerLine": "940", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_headerReceive] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'headerReceive', callback: Callback): void;", - "mainBuggyLine": "940" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.net.webSocket.d.ts", - "codeContextStaerLine": "949", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_headerReceive] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'headerReceive', callback?: Callback): void;", - "mainBuggyLine": "949" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.cardEmulation.d.ts", - "codeContextStaerLine": "50", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum FeatureType", - "mainBuggyLine": "50" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.cardEmulation.d.ts", - "codeContextStaerLine": "58", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HCE = 0", - "mainBuggyLine": "58" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.cardEmulation.d.ts", - "codeContextStaerLine": "67", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "UICC = 1", - "mainBuggyLine": "67" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.cardEmulation.d.ts", - "codeContextStaerLine": "76", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ESE = 2", - "mainBuggyLine": "76" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.cardEmulation.d.ts", - "codeContextStaerLine": "137", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isSupported(feature: number): boolean;", - "mainBuggyLine": "137" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.cardEmulation.d.ts", - "codeContextStaerLine": "209", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getPaymentServices(): AbilityInfo[];", - "mainBuggyLine": "209" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.cardEmulation.d.ts", - "codeContextStaerLine": "240", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startHCE(aidList: string[]): boolean;", - "mainBuggyLine": "240" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.cardEmulation.d.ts", - "codeContextStaerLine": "287", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stopHCE(): boolean;", - "mainBuggyLine": "287" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.cardEmulation.d.ts", - "codeContextStaerLine": "354", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sendResponse(responseApdu: number[]): void;", - "mainBuggyLine": "354" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.nfc.cardEmulation.d.ts", - "codeContextStaerLine": "341", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_hceCmd] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'hceCmd', callback: AsyncCallback): void;", - "mainBuggyLine": "341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.nfc.cardEmulation.d.ts", - "codeContextStaerLine": "341", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_05", - "description": "API check error of [limited api pair errors]: The on and off event subscription methods do not appear in pair.", - "language": "ts", - "mainBuggyCode": "on(type: 'hceCmd', callback: AsyncCallback): void;", - "mainBuggyLine": "341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.controller.d.ts", - "codeContextStaerLine": "125", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isNfcAvailable(): boolean;", - "mainBuggyLine": "125" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.controller.d.ts", - "codeContextStaerLine": "125", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_01", - "description": "API check error of [wrong value]: The [useinstead] tag value is incorrect. Please check the usage method.", - "language": "ts", - "mainBuggyCode": "function isNfcAvailable(): boolean;", - "mainBuggyLine": "125" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.controller.d.ts", - "codeContextStaerLine": "175", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function openNfc(): boolean;", - "mainBuggyLine": "175" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.controller.d.ts", - "codeContextStaerLine": "175", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_01", - "description": "API check error of [wrong value]: The [useinstead] tag value is incorrect. Please check the usage method.", - "language": "ts", - "mainBuggyCode": "function openNfc(): boolean;", - "mainBuggyLine": "175" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.controller.d.ts", - "codeContextStaerLine": "188", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function enableNfc(): void;", - "mainBuggyLine": "188" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.controller.d.ts", - "codeContextStaerLine": "200", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function closeNfc(): boolean;", - "mainBuggyLine": "200" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.controller.d.ts", - "codeContextStaerLine": "200", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_01", - "description": "API check error of [wrong value]: The [useinstead] tag value is incorrect. Please check the usage method.", - "language": "ts", - "mainBuggyCode": "function closeNfc(): boolean;", - "mainBuggyLine": "200" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.controller.d.ts", - "codeContextStaerLine": "213", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function disableNfc(): void;", - "mainBuggyLine": "213" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.nfc.controller.d.ts", - "codeContextStaerLine": "144", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_nfcStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'nfcStateChange', callback: Callback): void;", - "mainBuggyLine": "144" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.nfc.controller.d.ts", - "codeContextStaerLine": "163", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_nfcStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'nfcStateChange', callback?: Callback): void;", - "mainBuggyLine": "163" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "682", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getNfcATag(tagInfo: TagInfo): NfcATag;", - "mainBuggyLine": "682" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "731", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getNfcBTag(tagInfo: TagInfo): NfcBTag;", - "mainBuggyLine": "731" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "780", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getNfcFTag(tagInfo: TagInfo): NfcFTag;", - "mainBuggyLine": "780" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "829", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getNfcVTag(tagInfo: TagInfo): NfcVTag;", - "mainBuggyLine": "829" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1238", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface TagInfo", - "mainBuggyLine": "1238" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1254", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uid: number[];", - "mainBuggyLine": "1254" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1271", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "technology: number[];", - "mainBuggyLine": "1271" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1281", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "extrasData: PacMap[];", - "mainBuggyLine": "1281" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1281", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "extrasData: PacMap[];", - "mainBuggyLine": "1281" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1291", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "tagRfDiscId: number;", - "mainBuggyLine": "1291" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1291", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "tagRfDiscId: number;", - "mainBuggyLine": "1291" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1301", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "remoteTagService: rpc.RemoteObject;", - "mainBuggyLine": "1301" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1301", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "remoteTagService: rpc.RemoteObject;", - "mainBuggyLine": "1301" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1312", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "supportedProfiles: number[];", - "mainBuggyLine": "1312" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1312", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "supportedProfiles: number[];", - "mainBuggyLine": "1312" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1344", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "tnf: number;", - "mainBuggyLine": "1344" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1359", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rtdType: number[];", - "mainBuggyLine": "1359" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1374", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "id: number[];", - "mainBuggyLine": "1374" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1389", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "payload: number[];", - "mainBuggyLine": "1389" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1615", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NfcATag = _NfcATag;", - "mainBuggyLine": "1615" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1630", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NfcBTag = _NfcBTag;", - "mainBuggyLine": "1630" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1645", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NfcFTag = _NfcFTag;", - "mainBuggyLine": "1645" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1660", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NfcVTag = _NfcVTag;", - "mainBuggyLine": "1660" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1675", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type IsoDepTag = _IsoDepTag;", - "mainBuggyLine": "1675" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1690", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NdefTag = _NdefTag;", - "mainBuggyLine": "1690" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1705", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type MifareClassicTag = _MifareClassicTag;", - "mainBuggyLine": "1705" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1720", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type MifareUltralightTag = _MifareUltralightTag;", - "mainBuggyLine": "1720" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1735", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NdefFormatableTag = _NdefFormatableTag;", - "mainBuggyLine": "1735" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1750", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NdefMessage = _NdefMessage;", - "mainBuggyLine": "1750" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1765", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type TagSession = _TagSession;", - "mainBuggyLine": "1765" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "435", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [RTD_TEXT] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const RTD_TEXT: number[];", - "mainBuggyLine": "435" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "452", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [RTD_URI] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "const RTD_URI: number[];", - "mainBuggyLine": "452" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1178", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_readerMode] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'readerMode', elementName: ElementName, discTech: number[], callback: AsyncCallback): void;", - "mainBuggyLine": "1178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.nfc.tag.d.ts", - "codeContextStaerLine": "1215", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_readerMode] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'readerMode', elementName: ElementName, callback?: AsyncCallback): void;", - "mainBuggyLine": "1215" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notification.d.ts", - "codeContextStaerLine": "1601", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: DoNotDisturbType;", - "mainBuggyLine": "1601" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notification.d.ts", - "codeContextStaerLine": "1612", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "begin: Date;", - "mainBuggyLine": "1612" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notification.d.ts", - "codeContextStaerLine": "1623", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "end: Date;", - "mainBuggyLine": "1623" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "405", - "defectLevel": 2, - "defectType": "API_DEFINE_NAME_01", - "description": "API check error of [naming errors]: Prohibited word in [function publishasbundle(representativebundle: bundleoption, request: notificationrequest): promise;]:{option}.The word allowed is [options].", - "language": "ts", - "mainBuggyCode": "function publishAsBundle(representativeBundle: BundleOption, request: NotificationRequest): Promise;", - "mainBuggyLine": "405" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "491", - "defectLevel": 2, - "defectType": "API_DEFINE_NAME_01", - "description": "API check error of [naming errors]: Prohibited word in [function cancel(representativebundle: bundleoption, id: number): promise;]:{option}.The word allowed is [options].", - "language": "ts", - "mainBuggyCode": "function cancel(representativeBundle: BundleOption, id: number): Promise;", - "mainBuggyLine": "491" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "565", - "defectLevel": 2, - "defectType": "API_DEFINE_NAME_01", - "description": "API check error of [naming errors]: Prohibited word in [function cancelasbundle(representativebundle: bundleoption, id: number): promise;]:{option}.The word allowed is [options].", - "language": "ts", - "mainBuggyCode": "function cancelAsBundle(representativeBundle: BundleOption, id: number): Promise;", - "mainBuggyLine": "565" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "806", - "defectLevel": 2, - "defectType": "API_DEFINE_NAME_01", - "description": "API check error of [naming errors]: Prohibited word in [function getallnotificationenabledbundles(): promise>;]:{option}.The word allowed is [options].", - "language": "ts", - "mainBuggyCode": "function getAllNotificationEnabledBundles(): Promise>;", - "mainBuggyLine": "806" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "1258", - "defectLevel": 2, - "defectType": "API_DEFINE_NAME_01", - "description": "API check error of [naming errors]: Prohibited word in [function getslotbybundle(bundle: bundleoption, slottype: slottype): promise;]:{option}.The word allowed is [options].", - "language": "ts", - "mainBuggyCode": "function getSlotByBundle(bundle: BundleOption, slotType: SlotType): Promise;", - "mainBuggyLine": "1258" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "2038", - "defectLevel": 2, - "defectType": "API_DEFINE_NAME_01", - "description": "API check error of [naming errors]: Prohibited word in [function setdistributedenabledbybundle(bundle: bundleoption, devicetype: string, enable: boolean): promise;]:{option}.The word allowed is [options].", - "language": "ts", - "mainBuggyCode": "function setDistributedEnabledByBundle(bundle: BundleOption, deviceType: string, enable: boolean): Promise;", - "mainBuggyLine": "2038" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "2104", - "defectLevel": 2, - "defectType": "API_DEFINE_NAME_01", - "description": "API check error of [naming errors]: Prohibited word in [function isdistributedenabledbybundle(bundle: bundleoption, devicetype: string): promise;]:{option}.The word allowed is [options].", - "language": "ts", - "mainBuggyCode": "function isDistributedEnabledByBundle(bundle: BundleOption, deviceType: string): Promise;", - "mainBuggyLine": "2104" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "2516", - "defectLevel": 2, - "defectType": "API_DEFINE_NAME_01", - "description": "API check error of [naming errors]: Prohibited word in [function setbadgenumberbybundle(bundle: bundleoption, badgenumber: number): promise;]:{option}.The word allowed is [options].", - "language": "ts", - "mainBuggyCode": "function setBadgeNumberByBundle(bundle: BundleOption, badgeNumber: number): Promise;", - "mainBuggyLine": "2516" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "2754", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onResponse?: (notificationId: number, buttonOptions: ButtonOptions) => void;", - "mainBuggyLine": "2754" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "2766", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface NotificationCheckInfo", - "mainBuggyLine": "2766" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "2854", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface NotificationCheckResult", - "mainBuggyLine": "2854" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3222", - "defectLevel": 2, - "defectType": "API_DEFINE_NAME_01", - "description": "API check error of [naming errors]: Prohibited word in [trustlist?: array;]:{option}.The word allowed is [options].", - "language": "ts", - "mainBuggyCode": "trustlist?: Array;", - "mainBuggyLine": "3222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3372", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type BundleOption = _BundleOption;", - "mainBuggyLine": "3372" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3380", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationActionButton = _NotificationActionButton;", - "mainBuggyLine": "3380" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3395", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationBasicContent = _NotificationBasicContent;", - "mainBuggyLine": "3395" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3410", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationContent = _NotificationContent;", - "mainBuggyLine": "3410" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3425", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationLongTextContent = _NotificationLongTextContent;", - "mainBuggyLine": "3425" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3434", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationLiveViewContent = _NotificationLiveViewContent;", - "mainBuggyLine": "3434" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3449", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationMultiLineContent = _NotificationMultiLineContent;", - "mainBuggyLine": "3449" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3457", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationPictureContent = _NotificationPictureContent;", - "mainBuggyLine": "3457" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3465", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationSystemLiveViewContent = _NotificationSystemLiveViewContent;", - "mainBuggyLine": "3465" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3474", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationFlags = _NotificationFlags;", - "mainBuggyLine": "3474" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3483", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationFlagStatus = _NotificationFlagStatus;", - "mainBuggyLine": "3483" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3498", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationRequest = _NotificationRequest;", - "mainBuggyLine": "3498" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3517", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationFilter = _NotificationFilter;", - "mainBuggyLine": "3517" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3526", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationCheckRequest = _NotificationCheckRequest;", - "mainBuggyLine": "3526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3534", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type DistributedOptions = _DistributedOptions;", - "mainBuggyLine": "3534" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3542", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationSlot = _NotificationSlot;", - "mainBuggyLine": "3542" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3551", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type LiveViewStatus = _LiveViewStatus;", - "mainBuggyLine": "3551" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3560", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationSorting = _NotificationSorting;", - "mainBuggyLine": "3560" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3568", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationTemplate = _NotificationTemplate;", - "mainBuggyLine": "3568" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3576", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationUserInput = _NotificationUserInput;", - "mainBuggyLine": "3576" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3584", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationCapsule = _NotificationCapsule;", - "mainBuggyLine": "3584" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3592", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationButton = _NotificationButton;", - "mainBuggyLine": "3592" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3600", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationTime = _NotificationTime;", - "mainBuggyLine": "3600" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts", - "codeContextStaerLine": "3608", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationProgress = _NotificationProgress;", - "mainBuggyLine": "3608" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationSubscribe.d.ts", - "codeContextStaerLine": "455", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type BundleOption = _BundleOption;", - "mainBuggyLine": "455" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationSubscribe.d.ts", - "codeContextStaerLine": "464", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationSubscribeInfo = _NotificationSubscribeInfo;", - "mainBuggyLine": "464" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationSubscribe.d.ts", - "codeContextStaerLine": "474", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type NotificationSubscriber = _NotificationSubscriber;", - "mainBuggyLine": "474" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationSubscribe.d.ts", - "codeContextStaerLine": "484", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type SubscribeCallbackData = _SubscribeCallbackData;", - "mainBuggyLine": "484" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationSubscribe.d.ts", - "codeContextStaerLine": "493", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type EnabledNotificationCallbackData = _EnabledNotificationCallbackData;", - "mainBuggyLine": "493" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationSubscribe.d.ts", - "codeContextStaerLine": "502", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type BadgeNumberCallbackData = _BadgeNumberCallbackData;", - "mainBuggyLine": "502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "137", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type ValueType = string | image.PixelMap | Want | ArrayBuffer;", - "mainBuggyLine": "137" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "148", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createHtmlData(htmlText: string): PasteData;", - "mainBuggyLine": "148" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "159", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createWantData(want: Want): PasteData;", - "mainBuggyLine": "159" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "170", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createPlainTextData(text: string): PasteData;", - "mainBuggyLine": "170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "181", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createUriData(uri: string): PasteData;", - "mainBuggyLine": "181" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "217", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createHtmlTextRecord(htmlText: string): PasteDataRecord;", - "mainBuggyLine": "217" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "228", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createWantRecord(want: Want): PasteDataRecord;", - "mainBuggyLine": "228" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "239", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createPlainTextRecord(text: string): PasteDataRecord;", - "mainBuggyLine": "239" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "250", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createUriRecord(uri: string): PasteDataRecord;", - "mainBuggyLine": "250" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "576", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "convertToText(callback: AsyncCallback): void;", - "mainBuggyLine": "576" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "586", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "convertToText(): Promise;", - "mainBuggyLine": "586" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "626", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addHtmlRecord(htmlText: string): void;", - "mainBuggyLine": "626" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "636", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addWantRecord(want: Want): void;", - "mainBuggyLine": "636" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "661", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addTextRecord(text: string): void;", - "mainBuggyLine": "661" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "671", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addUriRecord(uri: string): void;", - "mainBuggyLine": "671" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "857", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getRecordAt(index: number): PasteDataRecord;", - "mainBuggyLine": "857" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "923", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hasMimeType(mimeType: string): boolean;", - "mainBuggyLine": "923" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "957", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "removeRecordAt(index: number): boolean;", - "mainBuggyLine": "957" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "990", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "replaceRecordAt(index: number, record: PasteDataRecord): boolean;", - "mainBuggyLine": "990" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "1039", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'update', callback: () => void): void;", - "mainBuggyLine": "1039" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "1051", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'update', callback?: () => void): void;", - "mainBuggyLine": "1051" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "1096", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "clear(callback: AsyncCallback): void;", - "mainBuggyLine": "1096" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "1106", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "clear(): Promise;", - "mainBuggyLine": "1106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "1161", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPasteData(callback: AsyncCallback): void;", - "mainBuggyLine": "1161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "1171", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPasteData(): Promise;", - "mainBuggyLine": "1171" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "1263", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hasPasteData(callback: AsyncCallback): void;", - "mainBuggyLine": "1263" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "1273", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hasPasteData(): Promise;", - "mainBuggyLine": "1273" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "1330", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setPasteData(data: PasteData, callback: AsyncCallback): void;", - "mainBuggyLine": "1330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "1341", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setPasteData(data: PasteData): Promise;", - "mainBuggyLine": "1341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "1468", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setAppShareOptions(shareOptions: ShareOption): void;", - "mainBuggyLine": "1468" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts", - "codeContextStaerLine": "1478", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "removeAppShareOptions(): void;", - "mainBuggyLine": "1478" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.PiPWindow.d.ts", - "codeContextStaerLine": "229", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type PiPControlGroup = VideoPlayControlGroup | VideoCallControlGroup | VideoMeetingControlGroup;", - "mainBuggyLine": "229" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.PiPWindow.d.ts", - "codeContextStaerLine": "329", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type PiPActionEventType = PiPVideoActionEvent | PiPCallActionEvent | PiPMeetingActionEvent | PiPLiveActionEvent;", - "mainBuggyLine": "329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.PiPWindow.d.ts", - "codeContextStaerLine": "345", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type PiPVideoActionEvent = 'playbackStateChanged' | 'nextVideo' | 'previousVideo' | 'fastForward' | 'fastBackward';", - "mainBuggyLine": "345" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.PiPWindow.d.ts", - "codeContextStaerLine": "354", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type PiPCallActionEvent = 'hangUp' | 'micStateChanged' | 'videoStateChanged';", - "mainBuggyLine": "354" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.PiPWindow.d.ts", - "codeContextStaerLine": "363", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type PiPMeetingActionEvent = 'hangUp' | 'voiceStateChanged' | 'videoStateChanged';", - "mainBuggyLine": "363" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.PiPWindow.d.ts", - "codeContextStaerLine": "383", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "type ControlPanelActionEventCallback = (event: PiPActionEventType, status?: number) => void;", - "mainBuggyLine": "383" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.PiPWindow.d.ts", - "codeContextStaerLine": "383", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "type ControlPanelActionEventCallback = (event: PiPActionEventType, status?: number) => void;", - "mainBuggyLine": "383" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.PiPWindow.d.ts", - "codeContextStaerLine": "383", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [2] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "type ControlPanelActionEventCallback = (event: PiPActionEventType, status?: number) => void;", - "mainBuggyLine": "383" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.PiPWindow.d.ts", - "codeContextStaerLine": "383", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type ControlPanelActionEventCallback = (event: PiPActionEventType, status?: number) => void;", - "mainBuggyLine": "383" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.PiPWindow.d.ts", - "codeContextStaerLine": "468", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_controlPanelActionEvent] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'controlPanelActionEvent', callback: ControlPanelActionEventCallback): void;", - "mainBuggyLine": "468" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.PiPWindow.d.ts", - "codeContextStaerLine": "468", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_05", - "description": "API check error of [limited api pair errors]: The on and off event subscription methods do not appear in pair.", - "language": "ts", - "mainBuggyCode": "on(type: 'controlPanelActionEvent', callback: ControlPanelActionEventCallback): void;", - "mainBuggyLine": "468" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pluginComponent.d.ts", - "codeContextStaerLine": "65", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type KVObject = { [key: string]: number | string | boolean | [] | KVObject }", - "mainBuggyLine": "65" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pluginComponent.d.ts", - "codeContextStaerLine": "374", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type OnPushEventCallback = (source: Want, template: PluginComponentTemplate, data: KVObject,\r\n extraData: KVObject) => void;", - "mainBuggyLine": "374" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.pluginComponent.d.ts", - "codeContextStaerLine": "384", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type OnRequestEventCallback = (source: Want, name: string, data: KVObject) => RequestEventResult;", - "mainBuggyLine": "384" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.power.d.ts", - "codeContextStaerLine": "226", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function setScreenOffTime(timeout: number): void;", - "mainBuggyLine": "226" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.print.d.ts", - "codeContextStaerLine": "1510", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "extensionId: string;", - "mainBuggyLine": "1510" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.print.d.ts", - "codeContextStaerLine": "1518", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "vendorId: string;", - "mainBuggyLine": "1518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.print.d.ts", - "codeContextStaerLine": "1526", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "vendorName: string;", - "mainBuggyLine": "1526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.print.d.ts", - "codeContextStaerLine": "1534", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "vendorIcon: number;", - "mainBuggyLine": "1534" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.print.d.ts", - "codeContextStaerLine": "1542", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "version: string;", - "mainBuggyLine": "1542" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "58", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface ChildProcess", - "mainBuggyLine": "58" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "67", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly pid: number;", - "mainBuggyLine": "67" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "67", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly pid: number;", - "mainBuggyLine": "67" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "77", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly ppid: number;", - "mainBuggyLine": "77" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "77", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly ppid: number;", - "mainBuggyLine": "77" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "87", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly exitCode: number;", - "mainBuggyLine": "87" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "87", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly exitCode: number;", - "mainBuggyLine": "87" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "97", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly killed: boolean;", - "mainBuggyLine": "97" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "97", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly killed: boolean;", - "mainBuggyLine": "97" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "108", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "wait(): Promise;", - "mainBuggyLine": "108" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "119", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getOutput(): Promise;", - "mainBuggyLine": "119" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "130", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getErrorOutput(): Promise;", - "mainBuggyLine": "130" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "140", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "close(): void;", - "mainBuggyLine": "140" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "151", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "kill(signal: number | string): void;", - "mainBuggyLine": "151" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "458", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const egid: number;", - "mainBuggyLine": "458" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "469", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const euid: number;", - "mainBuggyLine": "469" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "480", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const gid: number;", - "mainBuggyLine": "480" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "517", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const groups: number[];", - "mainBuggyLine": "517" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "554", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const ppid: number;", - "mainBuggyLine": "554" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "609", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isAppUid(v: number): boolean;", - "mainBuggyLine": "609" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "647", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getUidForName(v: string): number;", - "mainBuggyLine": "647" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "659", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getThreadPriority(v: number): number;", - "mainBuggyLine": "659" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "723", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getSystemConfig(name: number): number;", - "mainBuggyLine": "723" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "735", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getEnvironmentVar(name: string): string;", - "mainBuggyLine": "735" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "758", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type EventListener = (evt: Object) => void;", - "mainBuggyLine": "758" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "769", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ConditionType", - "mainBuggyLine": "769" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "780", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "timeout?: number;", - "mainBuggyLine": "780" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "791", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "killSignal?: number | string;", - "mainBuggyLine": "791" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "802", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maxBuffer?: number;", - "mainBuggyLine": "802" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "817", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function runCmd(\r\n command: string,\r\n options?: ConditionType\r\n ): ChildProcess;", - "mainBuggyLine": "817" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "855", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: string, listener: EventListener): void;", - "mainBuggyLine": "855" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "867", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: string): boolean;", - "mainBuggyLine": "867" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "878", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function exit(code: number): void;", - "mainBuggyLine": "878" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "889", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function cwd(): string;", - "mainBuggyLine": "889" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "900", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function chdir(dir: string): void;", - "mainBuggyLine": "900" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts", - "codeContextStaerLine": "939", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function kill(signal: number, pid: number): boolean;", - "mainBuggyLine": "939" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.prompt.d.ts", - "codeContextStaerLine": "114", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "index: number;", - "mainBuggyLine": "114" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "175", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "alignment?: Alignment;", - "mainBuggyLine": "175" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "184", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "offset?: Offset;", - "mainBuggyLine": "184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "585", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "backgroundColor?: ResourceColor;", - "mainBuggyLine": "585" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "596", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "backgroundBlurStyle?: BlurStyle;", - "mainBuggyLine": "596" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "606", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "shadow?: ShadowOptions | ShadowStyle;", - "mainBuggyLine": "606" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "733", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "autoCancel?: boolean;", - "mainBuggyLine": "733" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "743", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "transition?: TransitionEffect;", - "mainBuggyLine": "743" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "753", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maskColor?: ResourceColor;", - "mainBuggyLine": "753" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "763", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillDismiss?: Callback;", - "mainBuggyLine": "763" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "773", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDidAppear?: () => void;", - "mainBuggyLine": "773" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "783", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDidDisappear?: () => void;", - "mainBuggyLine": "783" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "793", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillAppear?: () => void;", - "mainBuggyLine": "793" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "803", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onWillDisappear?: () => void;", - "mainBuggyLine": "803" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "823", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface CustomDialogOptions", - "mainBuggyLine": "823" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "851", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "backgroundColor?: ResourceColor;", - "mainBuggyLine": "851" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "861", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "cornerRadius?: Dimension | BorderRadiuses;", - "mainBuggyLine": "861" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "871", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "width?: Dimension;", - "mainBuggyLine": "871" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "881", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "height?: Dimension;", - "mainBuggyLine": "881" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "891", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "borderWidth?: Dimension | EdgeWidths;", - "mainBuggyLine": "891" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "901", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "borderColor?: ResourceColor | EdgeColors;", - "mainBuggyLine": "901" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "911", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "borderStyle?: BorderStyle | EdgeStyles;", - "mainBuggyLine": "911" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "921", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "shadow?: ShadowOptions | ShadowStyle;", - "mainBuggyLine": "921" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "932", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "backgroundBlurStyle?: BlurStyle;", - "mainBuggyLine": "932" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "1053", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "buttons: [Button, Button?, Button?, Button?, Button?, Button?];", - "mainBuggyLine": "1053" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "1064", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "showInSubWindow?: boolean;", - "mainBuggyLine": "1064" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts", - "codeContextStaerLine": "1074", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isModal?: boolean;", - "mainBuggyLine": "1074" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "262", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "title: string;", - "mainBuggyLine": "262" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "271", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: ActionButtonType;", - "mainBuggyLine": "271" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "292", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "pkgName: string;", - "mainBuggyLine": "292" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "301", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityName: string;", - "mainBuggyLine": "301" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "321", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "pkgName: string;", - "mainBuggyLine": "321" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "330", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityName: string;", - "mainBuggyLine": "330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "350", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "reminderType: ReminderType;", - "mainBuggyLine": "350" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "360", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "actionButton?: [ActionButton?, ActionButton?];", - "mainBuggyLine": "360" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "369", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "wantAgent?: WantAgent;", - "mainBuggyLine": "369" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "379", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "maxScreenWantAgent?: MaxScreenWantAgent;", - "mainBuggyLine": "379" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "388", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ringDuration?: number;", - "mainBuggyLine": "388" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "397", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "snoozeTimes?: number;", - "mainBuggyLine": "397" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "406", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "timeInterval?: number;", - "mainBuggyLine": "406" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "415", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "title?: string;", - "mainBuggyLine": "415" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "424", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "content?: string;", - "mainBuggyLine": "424" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "433", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "expiredContent?: string;", - "mainBuggyLine": "433" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "442", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "snoozeContent?: string;", - "mainBuggyLine": "442" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "451", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "notificationId?: number;", - "mainBuggyLine": "451" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "460", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "slotType?: notification.SlotType;", - "mainBuggyLine": "460" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "470", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ReminderRequestCalendar", - "mainBuggyLine": "470" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "478", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "dateTime: LocalDateTime;", - "mainBuggyLine": "478" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "487", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "repeatMonths?: Array;", - "mainBuggyLine": "487" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "496", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "repeatDays?: Array;", - "mainBuggyLine": "496" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "508", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ReminderRequestAlarm", - "mainBuggyLine": "508" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "516", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "hour: number;", - "mainBuggyLine": "516" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "525", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "minute: number;", - "mainBuggyLine": "525" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "534", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "daysOfWeek?: Array;", - "mainBuggyLine": "534" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "546", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ReminderRequestTimer", - "mainBuggyLine": "546" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "554", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "triggerTimeInSeconds: number;", - "mainBuggyLine": "554" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "574", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "year: number;", - "mainBuggyLine": "574" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "583", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "month: number;", - "mainBuggyLine": "583" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "592", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "day: number;", - "mainBuggyLine": "592" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "601", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "hour: number;", - "mainBuggyLine": "601" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "610", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "minute: number;", - "mainBuggyLine": "610" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts", - "codeContextStaerLine": "619", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "second?: number;", - "mainBuggyLine": "619" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "189", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function addExcludeDate(reminderId: number, date: Date): Promise;", - "mainBuggyLine": "189" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "201", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function deleteExcludeDates(reminderId: number): Promise;", - "mainBuggyLine": "201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "213", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function getExcludeDates(reminderId: number): Promise>;", - "mainBuggyLine": "213" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "223", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function getAllValidReminders(): Promise>;", - "mainBuggyLine": "223" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "308", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "title: string;", - "mainBuggyLine": "308" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "325", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: ActionButtonType;", - "mainBuggyLine": "325" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "334", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "wantAgent?: WantAgent;", - "mainBuggyLine": "334" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "362", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "pkgName: string;", - "mainBuggyLine": "362" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "370", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityName: string;", - "mainBuggyLine": "370" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "378", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uri?: string;", - "mainBuggyLine": "378" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "386", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "parameters?: Record;", - "mainBuggyLine": "386" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "444", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "pkgName: string;", - "mainBuggyLine": "444" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "452", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityName: string;", - "mainBuggyLine": "452" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "469", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "reminderType: ReminderType;", - "mainBuggyLine": "469" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "485", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "actionButton?: [ActionButton?, ActionButton?, ActionButton?];", - "mainBuggyLine": "485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "493", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "wantAgent?: WantAgent;", - "mainBuggyLine": "493" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "502", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "maxScreenWantAgent?: MaxScreenWantAgent;", - "mainBuggyLine": "502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "510", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ringDuration?: number;", - "mainBuggyLine": "510" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "518", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "snoozeTimes?: number;", - "mainBuggyLine": "518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "526", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "timeInterval?: number;", - "mainBuggyLine": "526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "534", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "title?: string;", - "mainBuggyLine": "534" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "542", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "content?: string;", - "mainBuggyLine": "542" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "550", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "expiredContent?: string;", - "mainBuggyLine": "550" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "558", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "snoozeContent?: string;", - "mainBuggyLine": "558" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "566", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "notificationId?: number;", - "mainBuggyLine": "566" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "583", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "slotType?: notification.SlotType;", - "mainBuggyLine": "583" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "591", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "tapDismissed?: boolean;", - "mainBuggyLine": "591" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "599", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "autoDeletedTime?: number;", - "mainBuggyLine": "599" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "627", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ReminderRequestCalendar", - "mainBuggyLine": "627" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "634", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "dateTime: LocalDateTime;", - "mainBuggyLine": "634" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "642", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "repeatMonths?: Array;", - "mainBuggyLine": "642" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "650", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "repeatDays?: Array;", - "mainBuggyLine": "650" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "667", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "endDateTime?: LocalDateTime;", - "mainBuggyLine": "667" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "677", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rruleWantAgent?: WantAgent;", - "mainBuggyLine": "677" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "687", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ReminderRequestAlarm", - "mainBuggyLine": "687" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "694", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "hour: number;", - "mainBuggyLine": "694" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "702", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "minute: number;", - "mainBuggyLine": "702" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "710", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "daysOfWeek?: Array;", - "mainBuggyLine": "710" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "721", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ReminderRequestTimer", - "mainBuggyLine": "721" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "728", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "triggerTimeInSeconds: number;", - "mainBuggyLine": "728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "739", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "reminderId: number;", - "mainBuggyLine": "739" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "739", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "reminderId: number;", - "mainBuggyLine": "739" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "741", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "reminderReq: ReminderRequest;", - "mainBuggyLine": "741" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "741", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "reminderReq: ReminderRequest;", - "mainBuggyLine": "741" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "758", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "year: number;", - "mainBuggyLine": "758" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "766", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "month: number;", - "mainBuggyLine": "766" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "774", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "day: number;", - "mainBuggyLine": "774" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "782", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "hour: number;", - "mainBuggyLine": "782" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "790", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "minute: number;", - "mainBuggyLine": "790" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts", - "codeContextStaerLine": "798", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "second?: number;", - "mainBuggyLine": "798" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "47", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare namespace request", - "mainBuggyLine": "47" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "65", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const EXCEPTION_PERMISSION: number;", - "mainBuggyLine": "65" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "83", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const EXCEPTION_PARAMCHECK: number;", - "mainBuggyLine": "83" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "101", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const EXCEPTION_UNSUPPORTED: number;", - "mainBuggyLine": "101" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "119", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const EXCEPTION_FILEIO: number;", - "mainBuggyLine": "119" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "137", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const EXCEPTION_FILEPATH: number;", - "mainBuggyLine": "137" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "155", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const EXCEPTION_SERVICE: number;", - "mainBuggyLine": "155" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "173", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const EXCEPTION_OTHERS: number;", - "mainBuggyLine": "173" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "192", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const NETWORK_MOBILE: number;", - "mainBuggyLine": "192" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "211", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const NETWORK_WIFI: number;", - "mainBuggyLine": "211" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "230", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const ERROR_CANNOT_RESUME: number;", - "mainBuggyLine": "230" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "249", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const ERROR_DEVICE_NOT_FOUND: number;", - "mainBuggyLine": "249" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "268", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const ERROR_FILE_ALREADY_EXISTS: number;", - "mainBuggyLine": "268" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "287", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const ERROR_FILE_ERROR: number;", - "mainBuggyLine": "287" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "306", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const ERROR_HTTP_DATA_ERROR: number;", - "mainBuggyLine": "306" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "325", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const ERROR_INSUFFICIENT_SPACE: number;", - "mainBuggyLine": "325" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "344", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const ERROR_TOO_MANY_REDIRECTS: number;", - "mainBuggyLine": "344" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "363", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const ERROR_UNHANDLED_HTTP_CODE: number;", - "mainBuggyLine": "363" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "382", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const ERROR_UNKNOWN: number;", - "mainBuggyLine": "382" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "401", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const ERROR_OFFLINE: number;", - "mainBuggyLine": "401" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "420", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const ERROR_UNSUPPORTED_NETWORK_TYPE: number;", - "mainBuggyLine": "420" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "441", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const PAUSED_QUEUED_FOR_WIFI: number;", - "mainBuggyLine": "441" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "460", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const PAUSED_WAITING_FOR_NETWORK: number;", - "mainBuggyLine": "460" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "479", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const PAUSED_WAITING_TO_RETRY: number;", - "mainBuggyLine": "479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "498", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const PAUSED_BY_USER: number;", - "mainBuggyLine": "498" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "517", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const PAUSED_UNKNOWN: number;", - "mainBuggyLine": "517" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "536", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const SESSION_SUCCESSFUL: number;", - "mainBuggyLine": "536" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "555", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const SESSION_RUNNING: number;", - "mainBuggyLine": "555" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "574", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const SESSION_PENDING: number;", - "mainBuggyLine": "574" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "593", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const SESSION_PAUSED: number;", - "mainBuggyLine": "593" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "612", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const SESSION_FAILED: number;", - "mainBuggyLine": "612" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "626", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function download(config: DownloadConfig, callback: AsyncCallback): void;", - "mainBuggyLine": "626" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "661", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function downloadFile(context: BaseContext, config: DownloadConfig, callback: AsyncCallback): void;", - "mainBuggyLine": "661" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "675", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function download(config: DownloadConfig): Promise;", - "mainBuggyLine": "675" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "710", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function downloadFile(context: BaseContext, config: DownloadConfig): Promise;", - "mainBuggyLine": "710" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "724", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function upload(config: UploadConfig, callback: AsyncCallback): void;", - "mainBuggyLine": "724" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "755", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function uploadFile(context: BaseContext, config: UploadConfig, callback: AsyncCallback): void;", - "mainBuggyLine": "755" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "769", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function upload(config: UploadConfig): Promise;", - "mainBuggyLine": "769" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "800", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function uploadFile(context: BaseContext, config: UploadConfig): Promise;", - "mainBuggyLine": "800" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "821", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface DownloadConfig", - "mainBuggyLine": "821" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "821", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " interface DownloadConfig", - "mainBuggyLine": "821" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "840", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "url: string;", - "mainBuggyLine": "840" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "857", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "header?: Object;", - "mainBuggyLine": "857" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "874", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableMetered?: boolean;", - "mainBuggyLine": "874" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "891", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableRoaming?: boolean;", - "mainBuggyLine": "891" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "908", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "description?: string;", - "mainBuggyLine": "908" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "925", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "networkType?: number;", - "mainBuggyLine": "925" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "942", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "filePath?: string;", - "mainBuggyLine": "942" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "959", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "title?: string;", - "mainBuggyLine": "959" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "976", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "background?: boolean;", - "mainBuggyLine": "976" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "997", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface DownloadInfo", - "mainBuggyLine": "997" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "997", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " interface DownloadInfo", - "mainBuggyLine": "997" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1014", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "description: string;", - "mainBuggyLine": "1014" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1031", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "downloadedBytes: number;", - "mainBuggyLine": "1031" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1048", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "downloadId: number;", - "mainBuggyLine": "1048" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1065", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "failedReason: number;", - "mainBuggyLine": "1065" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1082", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fileName: string;", - "mainBuggyLine": "1082" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1099", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "filePath: string;", - "mainBuggyLine": "1099" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1116", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pausedReason: number;", - "mainBuggyLine": "1116" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1133", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "status: number;", - "mainBuggyLine": "1133" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1150", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "targetURI: string;", - "mainBuggyLine": "1150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1167", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "downloadTitle: string;", - "mainBuggyLine": "1167" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1184", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "downloadTotalBytes: number;", - "mainBuggyLine": "1184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1204", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface DownloadTask", - "mainBuggyLine": "1204" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1204", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " interface DownloadTask", - "mainBuggyLine": "1204" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1245", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'progress', callback: (receivedSize: number, totalSize: number) => void): void;", - "mainBuggyLine": "1245" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1287", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'progress', callback?: (receivedSize: number, totalSize: number) => void): void;", - "mainBuggyLine": "1287" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1329", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'complete' | 'pause' | 'remove', callback: () => void): void;", - "mainBuggyLine": "1329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1329", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'complete' | 'pause' | 'remove', callback: () => void): void;", - "mainBuggyLine": "1329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1329", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'complete' | 'pause' | 'remove', callback: () => void): void;", - "mainBuggyLine": "1329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1371", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'complete' | 'pause' | 'remove', callback?: () => void): void;", - "mainBuggyLine": "1371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1371", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'complete' | 'pause' | 'remove', callback?: () => void): void;", - "mainBuggyLine": "1371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1371", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'complete' | 'pause' | 'remove', callback?: () => void): void;", - "mainBuggyLine": "1371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1407", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'fail', callback: (err: number) => void): void;", - "mainBuggyLine": "1407" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1443", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'fail', callback?: (err: number) => void): void;", - "mainBuggyLine": "1443" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1455", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "remove(callback: AsyncCallback): void;", - "mainBuggyLine": "1455" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1467", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "remove(): Promise;", - "mainBuggyLine": "1467" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1479", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pause(callback: AsyncCallback): void;", - "mainBuggyLine": "1479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1491", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pause(): Promise;", - "mainBuggyLine": "1491" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1503", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "resume(callback: AsyncCallback): void;", - "mainBuggyLine": "1503" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1515", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "resume(): Promise;", - "mainBuggyLine": "1515" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1527", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "query(callback: AsyncCallback): void;", - "mainBuggyLine": "1527" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1539", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "query(): Promise;", - "mainBuggyLine": "1539" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1551", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "queryMimeType(callback: AsyncCallback): void;", - "mainBuggyLine": "1551" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1563", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "queryMimeType(): Promise;", - "mainBuggyLine": "1563" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1596", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "delete(callback: AsyncCallback): void;", - "mainBuggyLine": "1596" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1629", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "delete(): Promise;", - "mainBuggyLine": "1629" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1662", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "suspend(callback: AsyncCallback): void;", - "mainBuggyLine": "1662" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1695", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "suspend(): Promise;", - "mainBuggyLine": "1695" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1728", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "restore(callback: AsyncCallback): void;", - "mainBuggyLine": "1728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1761", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "restore(): Promise;", - "mainBuggyLine": "1761" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1794", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getTaskInfo(callback: AsyncCallback): void;", - "mainBuggyLine": "1794" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1827", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getTaskInfo(): Promise;", - "mainBuggyLine": "1827" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1860", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getTaskMimeType(callback: AsyncCallback): void;", - "mainBuggyLine": "1860" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1893", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getTaskMimeType(): Promise;", - "mainBuggyLine": "1893" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1914", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface File", - "mainBuggyLine": "1914" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1914", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " interface File", - "mainBuggyLine": "1914" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1931", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "filename: string;", - "mainBuggyLine": "1931" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1948", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "1948" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1965", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "uri: string;", - "mainBuggyLine": "1965" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "1982", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type: string;", - "mainBuggyLine": "1982" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2003", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface RequestData", - "mainBuggyLine": "2003" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2003", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " interface RequestData", - "mainBuggyLine": "2003" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2020", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "2020" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2037", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "value: string;", - "mainBuggyLine": "2037" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2058", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface UploadConfig", - "mainBuggyLine": "2058" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2058", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " interface UploadConfig", - "mainBuggyLine": "2058" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2077", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "url: string;", - "mainBuggyLine": "2077" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2094", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "header: Object;", - "mainBuggyLine": "2094" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2111", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "method: string;", - "mainBuggyLine": "2111" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2121", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "index?: number;", - "mainBuggyLine": "2121" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2132", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "begins?: number;", - "mainBuggyLine": "2132" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2143", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ends?: number;", - "mainBuggyLine": "2143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2160", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "files: Array;", - "mainBuggyLine": "2160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2177", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "data: Array;", - "mainBuggyLine": "2177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2198", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface TaskState", - "mainBuggyLine": "2198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2198", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " interface TaskState", - "mainBuggyLine": "2198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2215", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "path: string;", - "mainBuggyLine": "2215" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2232", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "responseCode: number;", - "mainBuggyLine": "2232" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2249", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "message: string;", - "mainBuggyLine": "2249" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2269", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface UploadTask", - "mainBuggyLine": "2269" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2269", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " interface UploadTask", - "mainBuggyLine": "2269" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2310", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'progress', callback: (uploadedSize: number, totalSize: number) => void): void;", - "mainBuggyLine": "2310" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2352", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'progress', callback?: (uploadedSize: number, totalSize: number) => void): void;", - "mainBuggyLine": "2352" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2388", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'headerReceive', callback: (header: object) => void): void;", - "mainBuggyLine": "2388" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2424", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'headerReceive', callback?: (header: object) => void): void;", - "mainBuggyLine": "2424" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2463", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'complete' | 'fail', callback: Callback>): void;", - "mainBuggyLine": "2463" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2463", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'complete' | 'fail', callback: Callback>): void;", - "mainBuggyLine": "2463" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2502", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'complete' | 'fail', callback?: Callback>): void;", - "mainBuggyLine": "2502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2502", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'complete' | 'fail', callback?: Callback>): void;", - "mainBuggyLine": "2502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2514", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "remove(callback: AsyncCallback): void;", - "mainBuggyLine": "2514" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2526", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "remove(): Promise;", - "mainBuggyLine": "2526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2559", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "delete(callback: AsyncCallback): void;", - "mainBuggyLine": "2559" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2592", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "delete(): Promise;", - "mainBuggyLine": "2592" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2805", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum BroadcastEvent", - "mainBuggyLine": "2805" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "2814", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMPLETE = 'ohos.request.event.COMPLETE'", - "mainBuggyLine": "2814" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "3337", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "proxy?: string;", - "mainBuggyLine": "3337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "3489", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "priority?: number;", - "mainBuggyLine": "3489" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "3913", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Filter", - "mainBuggyLine": "3913" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "3924", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bundle?: string;", - "mainBuggyLine": "3924" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "3942", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "before?: number;", - "mainBuggyLine": "3942" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "3960", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "after?: number;", - "mainBuggyLine": "3960" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "3978", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "state?: State;", - "mainBuggyLine": "3978" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "3996", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "action?: Action;", - "mainBuggyLine": "3996" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4014", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "mode?: Mode;", - "mainBuggyLine": "4014" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4034", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface TaskInfo", - "mainBuggyLine": "4034" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4045", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly uid?: string;", - "mainBuggyLine": "4045" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4056", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly bundle?: string;", - "mainBuggyLine": "4056" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4073", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly saveas?: string;", - "mainBuggyLine": "4073" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4094", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly url?: string;", - "mainBuggyLine": "4094" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4114", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly data?: string | Array;", - "mainBuggyLine": "4114" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4132", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly tid: string;", - "mainBuggyLine": "4132" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4150", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly title: string;", - "mainBuggyLine": "4150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4168", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly description: string;", - "mainBuggyLine": "4168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4186", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly action: Action;", - "mainBuggyLine": "4186" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4205", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly mode: Mode;", - "mainBuggyLine": "4205" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4217", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly priority: number;", - "mainBuggyLine": "4217" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4235", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly mimeType: string;", - "mainBuggyLine": "4235" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4253", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly progress: Progress;", - "mainBuggyLine": "4253" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4262", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly gauge: boolean;", - "mainBuggyLine": "4262" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4282", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly ctime: number;", - "mainBuggyLine": "4282" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4302", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly mtime: number;", - "mainBuggyLine": "4302" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4312", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly retry: boolean;", - "mainBuggyLine": "4312" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4321", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly tries: number;", - "mainBuggyLine": "4321" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4339", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly faults: Faults;", - "mainBuggyLine": "4339" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4357", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly reason: string;", - "mainBuggyLine": "4357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4378", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly extras?: object;", - "mainBuggyLine": "4378" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4651", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(event: 'pause', callback: (progress: Progress) => void): void;", - "mainBuggyLine": "4651" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4662", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(event: 'pause', callback?: (progress: Progress) => void): void;", - "mainBuggyLine": "4662" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4673", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(event: 'resume', callback: (progress: Progress) => void): void;", - "mainBuggyLine": "4673" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4684", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(event: 'resume', callback?: (progress: Progress) => void): void;", - "mainBuggyLine": "4684" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4695", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(event: 'remove', callback: (progress: Progress) => void): void;", - "mainBuggyLine": "4695" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4706", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(event: 'remove', callback?: (progress: Progress) => void): void;", - "mainBuggyLine": "4706" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4830", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pause(callback: AsyncCallback): void;", - "mainBuggyLine": "4830" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4850", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pause(): Promise;", - "mainBuggyLine": "4850" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4874", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "resume(callback: AsyncCallback): void;", - "mainBuggyLine": "4874" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "4898", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "resume(): Promise;", - "mainBuggyLine": "4898" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "5047", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getTask(context: BaseContext, id: string, token?: string): Promise;", - "mainBuggyLine": "5047" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "5134", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function show(id: string, callback: AsyncCallback): void;", - "mainBuggyLine": "5134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "5161", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function show(id: string): Promise;", - "mainBuggyLine": "5161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "5190", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function touch(id: string, token: string, callback: AsyncCallback): void;", - "mainBuggyLine": "5190" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "5219", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function touch(id: string, token: string): Promise;", - "mainBuggyLine": "5219" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "5242", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function search(callback: AsyncCallback>): void;", - "mainBuggyLine": "5242" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "5267", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function search(filter: Filter, callback: AsyncCallback>): void;", - "mainBuggyLine": "5267" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "5292", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function search(filter?: Filter): Promise>;", - "mainBuggyLine": "5292" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "5310", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function query(id: string, callback: AsyncCallback): void;", - "mainBuggyLine": "5310" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts", - "codeContextStaerLine": "5328", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function query(id: string): Promise;", - "mainBuggyLine": "5328" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "1245", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_progress] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'progress', callback: (receivedSize: number, totalSize: number) => void): void;", - "mainBuggyLine": "1245" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "1287", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_progress] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'progress', callback?: (receivedSize: number, totalSize: number) => void): void;", - "mainBuggyLine": "1287" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "1329", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_complete] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'complete' | 'pause' | 'remove', callback: () => void): void;", - "mainBuggyLine": "1329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "1329", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_pause] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'complete' | 'pause' | 'remove', callback: () => void): void;", - "mainBuggyLine": "1329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "1329", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_remove] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'complete' | 'pause' | 'remove', callback: () => void): void;", - "mainBuggyLine": "1329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "1371", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_complete] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'complete' | 'pause' | 'remove', callback?: () => void): void;", - "mainBuggyLine": "1371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "1371", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_pause] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'complete' | 'pause' | 'remove', callback?: () => void): void;", - "mainBuggyLine": "1371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "1371", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_remove] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'complete' | 'pause' | 'remove', callback?: () => void): void;", - "mainBuggyLine": "1371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "1407", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_fail] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'fail', callback: (err: number) => void): void;", - "mainBuggyLine": "1407" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "1443", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_fail] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'fail', callback?: (err: number) => void): void;", - "mainBuggyLine": "1443" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "2310", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_progress] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'progress', callback: (uploadedSize: number, totalSize: number) => void): void;", - "mainBuggyLine": "2310" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "2352", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_progress] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'progress', callback?: (uploadedSize: number, totalSize: number) => void): void;", - "mainBuggyLine": "2352" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "2388", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_headerReceive] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'headerReceive', callback: (header: object) => void): void;", - "mainBuggyLine": "2388" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "2424", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_headerReceive] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'headerReceive', callback?: (header: object) => void): void;", - "mainBuggyLine": "2424" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "2463", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_complete] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'complete' | 'fail', callback: Callback>): void;", - "mainBuggyLine": "2463" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "2463", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_fail] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'complete' | 'fail', callback: Callback>): void;", - "mainBuggyLine": "2463" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "2502", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_complete] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'complete' | 'fail', callback?: Callback>): void;", - "mainBuggyLine": "2502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "2502", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_fail] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'complete' | 'fail', callback?: Callback>): void;", - "mainBuggyLine": "2502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "4718", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_response] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(event: 'response', callback: Callback): void;", - "mainBuggyLine": "4718" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "4730", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_response] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(event: 'response', callback?: Callback): void;", - "mainBuggyLine": "4730" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "1329", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_01", - "description": "API check error of [wrong parameter]: The event name should be string.", - "language": "ts", - "mainBuggyCode": "on(type: 'complete' | 'pause' | 'remove', callback: () => void): void;", - "mainBuggyLine": "1329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "1371", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_01", - "description": "API check error of [wrong parameter]: The event name should be string.", - "language": "ts", - "mainBuggyCode": "off(type: 'complete' | 'pause' | 'remove', callback?: () => void): void;", - "mainBuggyLine": "1371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "1329", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_01", - "description": "API check error of [wrong parameter]: The event name should be string.", - "language": "ts", - "mainBuggyCode": "on(type: 'complete' | 'pause' | 'remove', callback: () => void): void;", - "mainBuggyLine": "1329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "1371", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_01", - "description": "API check error of [wrong parameter]: The event name should be string.", - "language": "ts", - "mainBuggyCode": "off(type: 'complete' | 'pause' | 'remove', callback?: () => void): void;", - "mainBuggyLine": "1371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "1329", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_01", - "description": "API check error of [wrong parameter]: The event name should be string.", - "language": "ts", - "mainBuggyCode": "on(type: 'complete' | 'pause' | 'remove', callback: () => void): void;", - "mainBuggyLine": "1329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "1371", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_01", - "description": "API check error of [wrong parameter]: The event name should be string.", - "language": "ts", - "mainBuggyCode": "off(type: 'complete' | 'pause' | 'remove', callback?: () => void): void;", - "mainBuggyLine": "1371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "2463", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_01", - "description": "API check error of [wrong parameter]: The event name should be string.", - "language": "ts", - "mainBuggyCode": "on(type: 'complete' | 'fail', callback: Callback>): void;", - "mainBuggyLine": "2463" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "2502", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_01", - "description": "API check error of [wrong parameter]: The event name should be string.", - "language": "ts", - "mainBuggyCode": "off(type: 'complete' | 'fail', callback?: Callback>): void;", - "mainBuggyLine": "2502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "2463", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_01", - "description": "API check error of [wrong parameter]: The event name should be string.", - "language": "ts", - "mainBuggyCode": "on(type: 'complete' | 'fail', callback: Callback>): void;", - "mainBuggyLine": "2463" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.request.d.ts", - "codeContextStaerLine": "2502", - "defectLevel": 2, - "defectType": "API_DEFINE_EVENT_01", - "description": "API check error of [wrong parameter]: The event name should be string.", - "language": "ts", - "mainBuggyCode": "off(type: 'complete' | 'fail', callback?: Callback>): void;", - "mainBuggyLine": "2502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "531", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "direction: Direction;", - "mainBuggyLine": "531" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "554", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "locale: string;", - "mainBuggyLine": "554" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "655", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "screenDensity: ScreenDensity;", - "mainBuggyLine": "655" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "678", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceType: DeviceType;", - "mainBuggyLine": "678" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "689", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface AsyncCallback", - "mainBuggyLine": "689" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "699", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "(err: Error, data: T): void;", - "mainBuggyLine": "699" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "718", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export function getResourceManager(callback: AsyncCallback): void;", - "mainBuggyLine": "718" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "738", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export function getResourceManager(bundleName: string, callback: AsyncCallback): void;", - "mainBuggyLine": "738" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "756", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export function getResourceManager(): Promise;", - "mainBuggyLine": "756" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "776", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "export function getResourceManager(bundleName: string): Promise;", - "mainBuggyLine": "776" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "837", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getString(resId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "837" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "849", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getString(resId: number): Promise;", - "mainBuggyLine": "849" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "949", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getStringArray(resId: number, callback: AsyncCallback>): void;", - "mainBuggyLine": "949" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "961", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getStringArray(resId: number): Promise>;", - "mainBuggyLine": "961" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "1061", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getMedia(resId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1061" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "1073", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getMedia(resId: number): Promise;", - "mainBuggyLine": "1073" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "1236", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getMediaBase64(resId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1236" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "1248", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getMediaBase64(resId: number): Promise;", - "mainBuggyLine": "1248" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "1521", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPluralString(resId: number, num: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1521" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "1536", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPluralString(resId: number, num: number): Promise;", - "mainBuggyLine": "1536" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "1654", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getRawFile(path: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1654" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "1666", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getRawFile(path: string): Promise;", - "mainBuggyLine": "1666" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "1678", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getRawFileDescriptor(path: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1678" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "1690", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getRawFileDescriptor(path: string): Promise;", - "mainBuggyLine": "1690" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "1702", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "closeRawFileDescriptor(path: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1702" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts", - "codeContextStaerLine": "1714", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "closeRawFileDescriptor(path: string): Promise;", - "mainBuggyLine": "1714" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.backgroundTaskManager.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare namespace backgroundTaskManager", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.backgroundTaskManager.d.ts", - "codeContextStaerLine": "47", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "requestId: number;", - "mainBuggyLine": "47" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.backgroundTaskManager.d.ts", - "codeContextStaerLine": "54", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "actualDelayTime: number;", - "mainBuggyLine": "54" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.backgroundTaskManager.d.ts", - "codeContextStaerLine": "276", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function stopBackgroundRunning(context: Context, callback: AsyncCallback): void;", - "mainBuggyLine": "276" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.backgroundTaskManager.d.ts", - "codeContextStaerLine": "295", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function stopBackgroundRunning(context: Context): Promise;", - "mainBuggyLine": "295" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.backgroundTaskManager.d.ts", - "codeContextStaerLine": "314", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function applyEfficiencyResources(request: EfficiencyResourcesRequest): void;", - "mainBuggyLine": "314" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.backgroundTaskManager.d.ts", - "codeContextStaerLine": "331", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function resetAllEfficiencyResources(): void;", - "mainBuggyLine": "331" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.backgroundTaskManager.d.ts", - "codeContextStaerLine": "524", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "resourceTypes: number;", - "mainBuggyLine": "524" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.backgroundTaskManager.d.ts", - "codeContextStaerLine": "533", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isApply: boolean;", - "mainBuggyLine": "533" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.backgroundTaskManager.d.ts", - "codeContextStaerLine": "542", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "timeOut: number;", - "mainBuggyLine": "542" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.backgroundTaskManager.d.ts", - "codeContextStaerLine": "551", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isPersist?: boolean;", - "mainBuggyLine": "551" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.backgroundTaskManager.d.ts", - "codeContextStaerLine": "560", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isProcess?: boolean;", - "mainBuggyLine": "560" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.backgroundTaskManager.d.ts", - "codeContextStaerLine": "569", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "reason: string;", - "mainBuggyLine": "569" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.deviceStandby.d.ts", - "codeContextStaerLine": "30", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare namespace deviceStandby", - "mainBuggyLine": "30" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.deviceStandby.d.ts", - "codeContextStaerLine": "199", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "resourceTypes: number;", - "mainBuggyLine": "199" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.deviceStandby.d.ts", - "codeContextStaerLine": "208", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.deviceStandby.d.ts", - "codeContextStaerLine": "217", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "duration: number;", - "mainBuggyLine": "217" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.deviceStandby.d.ts", - "codeContextStaerLine": "236", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "resourceTypes: number;", - "mainBuggyLine": "236" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.deviceStandby.d.ts", - "codeContextStaerLine": "245", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uid: number;", - "mainBuggyLine": "245" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.deviceStandby.d.ts", - "codeContextStaerLine": "254", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "254" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.deviceStandby.d.ts", - "codeContextStaerLine": "263", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "duration: number;", - "mainBuggyLine": "263" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.deviceStandby.d.ts", - "codeContextStaerLine": "272", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "reason: string;", - "mainBuggyLine": "272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.resourceschedule.systemload.d.ts", - "codeContextStaerLine": "106", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_systemLoadChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'systemLoadChange', callback: Callback): void;", - "mainBuggyLine": "106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.resourceschedule.systemload.d.ts", - "codeContextStaerLine": "117", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_systemLoadChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'systemLoadChange', callback?: Callback): void;", - "mainBuggyLine": "117" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "51", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "id: number;", - "mainBuggyLine": "51" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "60", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityInFgTotalTime?: number;", - "mainBuggyLine": "60" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "69", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityPrevAccessTime?: number;", - "mainBuggyLine": "69" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "78", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityPrevSeenTime?: number;", - "mainBuggyLine": "78" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "87", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilitySeenTotalTime?: number;", - "mainBuggyLine": "87" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "96", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName?: string;", - "mainBuggyLine": "96" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "105", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fgAbilityAccessTotalTime?: number;", - "mainBuggyLine": "105" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "114", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fgAbilityPrevAccessTime?: number;", - "mainBuggyLine": "114" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "124", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "infosBeginTime?: number;", - "mainBuggyLine": "124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "134", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "infosEndTime?: number;", - "mainBuggyLine": "134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "151", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "formName: string;", - "mainBuggyLine": "151" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "160", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "formDimension: number;", - "mainBuggyLine": "160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "169", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "formId: number;", - "mainBuggyLine": "169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "178", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "formLastUsedTime: number;", - "mainBuggyLine": "178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "187", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "count: number;", - "mainBuggyLine": "187" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "204", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId?: string;", - "mainBuggyLine": "204" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "213", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName: string;", - "mainBuggyLine": "213" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "222", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "moduleName: string;", - "mainBuggyLine": "222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "231", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityName?: string;", - "mainBuggyLine": "231" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "240", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "appLabelId?: number;", - "mainBuggyLine": "240" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "249", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "labelId?: number;", - "mainBuggyLine": "249" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "258", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "descriptionId?: number;", - "mainBuggyLine": "258" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "267", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityLableId?: number;", - "mainBuggyLine": "267" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "276", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityDescriptionId?: number;", - "mainBuggyLine": "276" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "285", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityIconId?: number;", - "mainBuggyLine": "285" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "294", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "launchedCount: number;", - "mainBuggyLine": "294" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "303", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "lastModuleUsedTime: number;", - "mainBuggyLine": "303" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "312", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "formRecords: Array;", - "mainBuggyLine": "312" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "329", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "338", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "eventId: number;", - "mainBuggyLine": "338" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "347", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "count: number;", - "mainBuggyLine": "347" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "364", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "appGroup?: number;", - "mainBuggyLine": "364" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "373", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName?: string;", - "mainBuggyLine": "373" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "382", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "indexOfLink?: string;", - "mainBuggyLine": "382" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "391", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "nameOfClass?: string;", - "mainBuggyLine": "391" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "400", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "eventOccurredTime?: number;", - "mainBuggyLine": "400" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "409", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "eventId?: number;", - "mainBuggyLine": "409" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "426", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "appOldGroup: number;", - "mainBuggyLine": "426" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "435", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "appNewGroup: number;", - "mainBuggyLine": "435" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "444", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "userId: number;", - "mainBuggyLine": "444" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "453", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "changeReason: number;", - "mainBuggyLine": "453" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "462", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName: string;", - "mainBuggyLine": "462" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "556", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function queryAppGroup(callback: AsyncCallback): void;", - "mainBuggyLine": "556" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "580", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function queryAppGroup(): Promise;", - "mainBuggyLine": "580" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "603", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function queryAppGroupSync(): number;", - "mainBuggyLine": "603" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "688", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type BundleStatsMap = Record;", - "mainBuggyLine": "688" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "930", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function queryCurrentBundleEvents(begin: number, end: number, callback: AsyncCallback>): void;", - "mainBuggyLine": "930" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts", - "codeContextStaerLine": "954", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function queryCurrentBundleEvents(begin: number, end: number): Promise>;", - "mainBuggyLine": "954" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.workScheduler.d.ts", - "codeContextStaerLine": "48", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "workId: number;", - "mainBuggyLine": "48" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.workScheduler.d.ts", - "codeContextStaerLine": "56", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName: string;", - "mainBuggyLine": "56" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.workScheduler.d.ts", - "codeContextStaerLine": "64", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityName: string;", - "mainBuggyLine": "64" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.workScheduler.d.ts", - "codeContextStaerLine": "72", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isPersisted?: boolean;", - "mainBuggyLine": "72" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.workScheduler.d.ts", - "codeContextStaerLine": "80", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "networkType?: NetworkType;", - "mainBuggyLine": "80" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.workScheduler.d.ts", - "codeContextStaerLine": "88", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isCharging?: boolean;", - "mainBuggyLine": "88" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.workScheduler.d.ts", - "codeContextStaerLine": "96", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "chargerType?: ChargingType;", - "mainBuggyLine": "96" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.workScheduler.d.ts", - "codeContextStaerLine": "104", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "batteryLevel?: number;", - "mainBuggyLine": "104" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.workScheduler.d.ts", - "codeContextStaerLine": "112", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "batteryStatus?: BatteryStatus;", - "mainBuggyLine": "112" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.workScheduler.d.ts", - "codeContextStaerLine": "120", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "storageRequest?: StorageRequest;", - "mainBuggyLine": "120" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.workScheduler.d.ts", - "codeContextStaerLine": "128", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "repeatCycleTime?: number;", - "mainBuggyLine": "128" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.workScheduler.d.ts", - "codeContextStaerLine": "136", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isRepeat?: boolean;", - "mainBuggyLine": "136" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.workScheduler.d.ts", - "codeContextStaerLine": "144", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "repeatCount?: number;", - "mainBuggyLine": "144" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.workScheduler.d.ts", - "codeContextStaerLine": "152", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isDeepIdle?: boolean;", - "mainBuggyLine": "152" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.workScheduler.d.ts", - "codeContextStaerLine": "160", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "idleWaitTime?: number;", - "mainBuggyLine": "160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.workScheduler.d.ts", - "codeContextStaerLine": "168", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "parameters?: Record;", - "mainBuggyLine": "168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.router.d.ts", - "codeContextStaerLine": "296", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "params: Object;", - "mainBuggyLine": "296" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.router.d.ts", - "codeContextStaerLine": "354", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function push(options: RouterOptions): void;", - "mainBuggyLine": "354" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.router.d.ts", - "codeContextStaerLine": "571", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function replace(options: RouterOptions): void;", - "mainBuggyLine": "571" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.router.d.ts", - "codeContextStaerLine": "736", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function back(index: number, params?: Object): void;", - "mainBuggyLine": "736" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.router.d.ts", - "codeContextStaerLine": "822", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getStateByIndex(index: number): RouterState | undefined;", - "mainBuggyLine": "822" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.router.d.ts", - "codeContextStaerLine": "833", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getStateByUrl(url: string): Array;", - "mainBuggyLine": "833" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.router.d.ts", - "codeContextStaerLine": "844", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function enableAlertBeforeBackPage(options: EnableAlertOptions): void;", - "mainBuggyLine": "844" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.router.d.ts", - "codeContextStaerLine": "895", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function disableAlertBeforeBackPage(): void;", - "mainBuggyLine": "895" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts", - "codeContextStaerLine": "2076", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "errCode: number;", - "mainBuggyLine": "2076" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts", - "codeContextStaerLine": "2085", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "code: number;", - "mainBuggyLine": "2085" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts", - "codeContextStaerLine": "2095", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "data: MessageParcel;", - "mainBuggyLine": "2095" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts", - "codeContextStaerLine": "2105", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "reply: MessageParcel;", - "mainBuggyLine": "2105" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts", - "codeContextStaerLine": "2124", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "errCode: number;", - "mainBuggyLine": "2124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts", - "codeContextStaerLine": "2132", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "code: number;", - "mainBuggyLine": "2132" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts", - "codeContextStaerLine": "2141", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "data: MessageSequence;", - "mainBuggyLine": "2141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts", - "codeContextStaerLine": "2150", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "reply: MessageSequence;", - "mainBuggyLine": "2150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts", - "codeContextStaerLine": "2469", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "TF_SYNC: number;", - "mainBuggyLine": "2469" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts", - "codeContextStaerLine": "2478", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "TF_ASYNC: number;", - "mainBuggyLine": "2478" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts", - "codeContextStaerLine": "2487", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "TF_ACCEPT_FDS: number;", - "mainBuggyLine": "2487" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts", - "codeContextStaerLine": "2503", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "TF_WAIT_TIME: number;", - "mainBuggyLine": "2503" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts", - "codeContextStaerLine": "2869", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "PING_TRANSACTION: number;", - "mainBuggyLine": "2869" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts", - "codeContextStaerLine": "2878", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "DUMP_TRANSACTION: number;", - "mainBuggyLine": "2878" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts", - "codeContextStaerLine": "2887", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "INTERFACE_TRANSACTION: number;", - "mainBuggyLine": "2887" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts", - "codeContextStaerLine": "2897", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "MIN_TRANSACTION_ID: number;", - "mainBuggyLine": "2897" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts", - "codeContextStaerLine": "2907", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "MAX_TRANSACTION_ID: number;", - "mainBuggyLine": "2907" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts", - "codeContextStaerLine": "3308", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "PROT_EXEC: number;", - "mainBuggyLine": "3308" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts", - "codeContextStaerLine": "3317", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "PROT_NONE: number;", - "mainBuggyLine": "3317" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts", - "codeContextStaerLine": "3326", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "PROT_READ: number;", - "mainBuggyLine": "3326" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts", - "codeContextStaerLine": "3335", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "PROT_WRITE: number;", - "mainBuggyLine": "3335" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.runningLock.d.ts", - "codeContextStaerLine": "36", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": " class RunningLock", - "mainBuggyLine": "36" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.runningLock.d.ts", - "codeContextStaerLine": "36", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": " class RunningLock", - "mainBuggyLine": "36" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.screen.d.ts", - "codeContextStaerLine": "360", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "screenId: number;", - "mainBuggyLine": "360" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.screen.d.ts", - "codeContextStaerLine": "369", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "startX: number;", - "mainBuggyLine": "369" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.screen.d.ts", - "codeContextStaerLine": "378", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "startY: number;", - "mainBuggyLine": "378" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.screen.d.ts", - "codeContextStaerLine": "397", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "397" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.screen.d.ts", - "codeContextStaerLine": "406", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "width: number;", - "mainBuggyLine": "406" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.screen.d.ts", - "codeContextStaerLine": "415", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "height: number;", - "mainBuggyLine": "415" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.screen.d.ts", - "codeContextStaerLine": "424", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "density: number;", - "mainBuggyLine": "424" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.screen.d.ts", - "codeContextStaerLine": "433", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "surfaceId: string;", - "mainBuggyLine": "433" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.screen.d.ts", - "codeContextStaerLine": "498", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly id: number;", - "mainBuggyLine": "498" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.screen.d.ts", - "codeContextStaerLine": "507", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly parent: number;", - "mainBuggyLine": "507" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.screen.d.ts", - "codeContextStaerLine": "516", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly supportedModeInfo: Array;", - "mainBuggyLine": "516" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.screen.d.ts", - "codeContextStaerLine": "525", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly activeModeIndex: number;", - "mainBuggyLine": "525" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.screen.d.ts", - "codeContextStaerLine": "534", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly orientation: Orientation;", - "mainBuggyLine": "534" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.screen.d.ts", - "codeContextStaerLine": "543", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly sourceMode: ScreenSourceMode;", - "mainBuggyLine": "543" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.screenLock.d.ts", - "codeContextStaerLine": "187", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type EventType =\r\n 'beginWakeUp'\r\n | 'endWakeUp'\r\n | 'beginScreenOn'\r\n | 'endScreenOn'\r\n | 'beginScreenOff'\r\n | 'endScreenOff'\r\n | 'unlockScreen'\r\n | 'lockScreen'\r\n | 'beginExitAnimation'\r\n | 'beginSleep'\r\n | 'endSleep'\r\n | 'changeUser'\r\n | 'screenlockEnabled'\r\n | 'serviceRestart';", - "mainBuggyLine": "187" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.screenLock.d.ts", - "codeContextStaerLine": "219", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "eventType: EventType;", - "mainBuggyLine": "219" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.screenLock.d.ts", - "codeContextStaerLine": "227", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "params: string;", - "mainBuggyLine": "227" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.screenshot.d.ts", - "codeContextStaerLine": "266", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "screenRect?: Rect;", - "mainBuggyLine": "266" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.screenshot.d.ts", - "codeContextStaerLine": "274", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "imageSize?: Size;", - "mainBuggyLine": "274" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.screenshot.d.ts", - "codeContextStaerLine": "282", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rotation?: number;", - "mainBuggyLine": "282" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.screenshot.d.ts", - "codeContextStaerLine": "290", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "displayId?: number;", - "mainBuggyLine": "290" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.asset.d.ts", - "codeContextStaerLine": "56", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function add(attributes: AssetMap): Promise;", - "mainBuggyLine": "56" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.asset.d.ts", - "codeContextStaerLine": "115", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function addSync(attributes: AssetMap): void;", - "mainBuggyLine": "115" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.asset.d.ts", - "codeContextStaerLine": "515", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type AssetMap = Map;", - "mainBuggyLine": "515" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.asset.d.ts", - "codeContextStaerLine": "524", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type Value = boolean | number | Uint8Array;", - "mainBuggyLine": "524" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.asset.d.ts", - "codeContextStaerLine": "801", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "IS_PERSISTENT = TagType.BOOL | 0x11", - "mainBuggyLine": "801" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "1348", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSerialNumber(): number;", - "mainBuggyLine": "1348" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2390", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface X509CrlEntry", - "mainBuggyLine": "2390" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2405", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getEncoded(callback: AsyncCallback): void;", - "mainBuggyLine": "2405" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2421", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getEncoded(): Promise;", - "mainBuggyLine": "2421" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2432", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSerialNumber(): number;", - "mainBuggyLine": "2432" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2446", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getCertIssuer(): DataBlob;", - "mainBuggyLine": "2446" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2460", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getRevocationDate(): string;", - "mainBuggyLine": "2460" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2732", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface X509Crl", - "mainBuggyLine": "2732" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2745", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isRevoked(cert: X509Cert): boolean;", - "mainBuggyLine": "2745" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2756", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getType(): string;", - "mainBuggyLine": "2756" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2772", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getEncoded(callback: AsyncCallback): void;", - "mainBuggyLine": "2772" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2788", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getEncoded(): Promise;", - "mainBuggyLine": "2788" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2803", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "verify(key: cryptoFramework.PubKey, callback: AsyncCallback): void;", - "mainBuggyLine": "2803" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2818", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "verify(key: cryptoFramework.PubKey): Promise;", - "mainBuggyLine": "2818" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2829", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getVersion(): number;", - "mainBuggyLine": "2829" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2843", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getIssuerName(): DataBlob;", - "mainBuggyLine": "2843" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2857", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getLastUpdate(): string;", - "mainBuggyLine": "2857" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2871", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getNextUpdate(): string;", - "mainBuggyLine": "2871" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2887", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getRevokedCert(serialNumber: number): X509CrlEntry;", - "mainBuggyLine": "2887" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2903", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getRevokedCertWithCert(cert: X509Cert): X509CrlEntry;", - "mainBuggyLine": "2903" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2918", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getRevokedCerts(callback: AsyncCallback>): void;", - "mainBuggyLine": "2918" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2933", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getRevokedCerts(): Promise>;", - "mainBuggyLine": "2933" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2947", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getTbsInfo(): DataBlob;", - "mainBuggyLine": "2947" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2961", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSignature(): DataBlob;", - "mainBuggyLine": "2961" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2975", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSignatureAlgName(): string;", - "mainBuggyLine": "2975" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "2989", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSignatureAlgOid(): string;", - "mainBuggyLine": "2989" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "3004", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSignatureAlgParams(): DataBlob;", - "mainBuggyLine": "3004" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "3022", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createX509Crl(inStream: EncodingBlob, callback: AsyncCallback): void;", - "mainBuggyLine": "3022" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "3039", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createX509Crl(inStream: EncodingBlob): Promise;", - "mainBuggyLine": "3039" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "5143", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [CACert] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "CACert?: X509Cert;", - "mainBuggyLine": "5143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "5162", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [CAPubKey] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "CAPubKey?: Uint8Array;", - "mainBuggyLine": "5162" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.security.cert.d.ts", - "codeContextStaerLine": "5181", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [CASubject] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "CASubject?: Uint8Array;", - "mainBuggyLine": "5181" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.certManager.d.ts", - "codeContextStaerLine": "909", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [2] [param] tag is incorrect. Please check if it matches the [2] parameter name.", - "language": "ts", - "mainBuggyCode": "function finish(handle: Uint8Array, signature?: Uint8Array): Promise;", - "mainBuggyLine": "909" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "265", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface IvParamsSpec", - "mainBuggyLine": "265" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "317", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface GcmParamsSpec", - "mainBuggyLine": "317" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "421", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface CcmParamsSpec", - "mainBuggyLine": "421" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "716", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface SymKey", - "mainBuggyLine": "716" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "765", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface PriKey", - "mainBuggyLine": "765" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "887", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface PubKey", - "mainBuggyLine": "887" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "5967", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface DSACommonParamsSpec", - "mainBuggyLine": "5967" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "6071", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface DSAPubKeySpec", - "mainBuggyLine": "6071" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "6149", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface DSAKeyPairSpec", - "mainBuggyLine": "6149" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "6308", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ECFieldFp", - "mainBuggyLine": "6308" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "6438", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ECCCommonParamsSpec", - "mainBuggyLine": "6438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "6620", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ECCPriKeySpec", - "mainBuggyLine": "6620" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "6698", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ECCPubKeySpec", - "mainBuggyLine": "6698" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "6776", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ECCKeyPairSpec", - "mainBuggyLine": "6776" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "6958", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface DHCommonParamsSpec", - "mainBuggyLine": "6958" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "7034", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface DHPriKeySpec", - "mainBuggyLine": "7034" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "7091", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface DHPubKeySpec", - "mainBuggyLine": "7091" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "7148", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface DHKeyPairSpec", - "mainBuggyLine": "7148" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "7276", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ED25519PriKeySpec", - "mainBuggyLine": "7276" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "7314", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ED25519PubKeySpec", - "mainBuggyLine": "7314" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "7352", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ED25519KeyPairSpec", - "mainBuggyLine": "7352" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "7409", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface X25519PriKeySpec", - "mainBuggyLine": "7409" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "7447", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface X25519PubKeySpec", - "mainBuggyLine": "7447" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "7485", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface X25519KeyPairSpec", - "mainBuggyLine": "7485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "7549", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface RSACommonParamsSpec", - "mainBuggyLine": "7549" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "7601", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface RSAPubKeySpec", - "mainBuggyLine": "7601" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "7679", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface RSAKeyPairSpec", - "mainBuggyLine": "7679" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "8174", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface PBKDF2Spec", - "mainBuggyLine": "8174" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts", - "codeContextStaerLine": "8261", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface HKDFSpec", - "mainBuggyLine": "8261" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "50", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function generateKey(keyAlias: string, options: HuksOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "50" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "63", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function generateKey(keyAlias: string, options: HuksOptions): Promise;", - "mainBuggyLine": "63" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "196", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function generateKeyItemAsUser(userId: number, keyAlias: string, huksOptions: HuksOptions): Promise;", - "mainBuggyLine": "196" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "196", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [3] [param] tag is incorrect. Please check if it matches the [3] parameter name.", - "language": "ts", - "mainBuggyCode": "function generateKeyItemAsUser(userId: number, keyAlias: string, huksOptions: HuksOptions): Promise;", - "mainBuggyLine": "196" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "209", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function deleteKey(keyAlias: string, options: HuksOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "209" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "222", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function deleteKey(keyAlias: string, options: HuksOptions): Promise;", - "mainBuggyLine": "222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "330", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function deleteKeyItemAsUser(userId: number, keyAlias: string, huksOptions: HuksOptions): Promise;", - "mainBuggyLine": "330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "330", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [3] [param] tag is incorrect. Please check if it matches the [3] parameter name.", - "language": "ts", - "mainBuggyCode": "function deleteKeyItemAsUser(userId: number, keyAlias: string, huksOptions: HuksOptions): Promise;", - "mainBuggyLine": "330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "343", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function importKey(keyAlias: string, options: HuksOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "343" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "356", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function importKey(keyAlias: string, options: HuksOptions): Promise;", - "mainBuggyLine": "356" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "494", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function importKeyItemAsUser(userId: number, keyAlias: string, huksOptions: HuksOptions): Promise;", - "mainBuggyLine": "494" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "494", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [3] [param] tag is incorrect. Please check if it matches the [3] parameter name.", - "language": "ts", - "mainBuggyCode": "function importKeyItemAsUser(userId: number, keyAlias: string, huksOptions: HuksOptions): Promise;", - "mainBuggyLine": "494" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "587", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function importWrappedKeyItemAsUser(userId: number, keyAlias: string, wrappingKeyAlias: string, huksOptions: HuksOptions): Promise;", - "mainBuggyLine": "587" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "587", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [4] [param] tag is incorrect. Please check if it matches the [4] parameter name.", - "language": "ts", - "mainBuggyCode": "function importWrappedKeyItemAsUser(userId: number, keyAlias: string, wrappingKeyAlias: string, huksOptions: HuksOptions): Promise;", - "mainBuggyLine": "587" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "655", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function exportKey(keyAlias: string, options: HuksOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "655" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "668", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function exportKey(keyAlias: string, options: HuksOptions): Promise;", - "mainBuggyLine": "668" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "747", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function exportKeyItemAsUser(userId: number, keyAlias: string, huksOptions: HuksOptions): Promise;", - "mainBuggyLine": "747" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "747", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [3] [param] tag is incorrect. Please check if it matches the [3] parameter name.", - "language": "ts", - "mainBuggyCode": "function exportKeyItemAsUser(userId: number, keyAlias: string, huksOptions: HuksOptions): Promise;", - "mainBuggyLine": "747" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "809", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getKeyProperties(keyAlias: string, options: HuksOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "809" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "822", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getKeyProperties(keyAlias: string, options: HuksOptions): Promise;", - "mainBuggyLine": "822" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "905", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getKeyItemPropertiesAsUser(userId: number, keyAlias: string, huksOptions: HuksOptions): Promise;", - "mainBuggyLine": "905" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "905", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [3] [param] tag is incorrect. Please check if it matches the [3] parameter name.", - "language": "ts", - "mainBuggyCode": "function getKeyItemPropertiesAsUser(userId: number, keyAlias: string, huksOptions: HuksOptions): Promise;", - "mainBuggyLine": "905" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "967", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isKeyExist(keyAlias: string, options: HuksOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "967" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "980", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isKeyExist(keyAlias: string, options: HuksOptions): Promise;", - "mainBuggyLine": "980" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "1004", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isKeyItemExist(keyAlias: string, options: HuksOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "1004" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "1028", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isKeyItemExist(keyAlias: string, options: HuksOptions): Promise;", - "mainBuggyLine": "1028" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "1080", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function hasKeyItemAsUser(userId: number, keyAlias: string, huksOptions: HuksOptions): Promise;", - "mainBuggyLine": "1080" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "1080", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [3] [param] tag is incorrect. Please check if it matches the [3] parameter name.", - "language": "ts", - "mainBuggyCode": "function hasKeyItemAsUser(userId: number, keyAlias: string, huksOptions: HuksOptions): Promise;", - "mainBuggyLine": "1080" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "1117", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function init(keyAlias: string, options: HuksOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "1117" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "1130", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function init(keyAlias: string, options: HuksOptions): Promise;", - "mainBuggyLine": "1130" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "1263", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function initSessionAsUser(userId: number, keyAlias: string, huksOptions: HuksOptions): Promise;", - "mainBuggyLine": "1263" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "1263", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [3] [param] tag is incorrect. Please check if it matches the [3] parameter name.", - "language": "ts", - "mainBuggyCode": "function initSessionAsUser(userId: number, keyAlias: string, huksOptions: HuksOptions): Promise;", - "mainBuggyLine": "1263" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "1277", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function update(handle: number, token?: Uint8Array, options: HuksOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "1277" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "1291", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function update(handle: number, token?: Uint8Array, options: HuksOptions): Promise;", - "mainBuggyLine": "1291" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "1478", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function finish(handle: number, options: HuksOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "1478" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "1491", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function finish(handle: number, options: HuksOptions): Promise;", - "mainBuggyLine": "1491" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "1678", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function abort(handle: number, options: HuksOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "1678" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "1691", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function abort(handle: number, options: HuksOptions): Promise;", - "mainBuggyLine": "1691" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "1800", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function attestKeyItem(keyAlias: string, options: HuksOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "1800" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "1830", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function attestKeyItemAsUser(userId: number, keyAlias: string, huksOptions: HuksOptions): Promise;", - "mainBuggyLine": "1830" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "1830", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [3] [param] tag is incorrect. Please check if it matches the [3] parameter name.", - "language": "ts", - "mainBuggyCode": "function attestKeyItemAsUser(userId: number, keyAlias: string, huksOptions: HuksOptions): Promise;", - "mainBuggyLine": "1830" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "1857", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function attestKeyItem(keyAlias: string, options: HuksOptions): Promise;", - "mainBuggyLine": "1857" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "1936", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function anonAttestKeyItemAsUser(userId: number, keyAlias: string, huksOptions: HuksOptions): Promise;", - "mainBuggyLine": "1936" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "1936", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [3] [param] tag is incorrect. Please check if it matches the [3] parameter name.", - "language": "ts", - "mainBuggyCode": "function anonAttestKeyItemAsUser(userId: number, keyAlias: string, huksOptions: HuksOptions): Promise;", - "mainBuggyLine": "1936" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "1996", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getSdkVersion(options: HuksOptions): string;", - "mainBuggyLine": "1996" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2042", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "tag: HuksTag;", - "mainBuggyLine": "2042" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2052", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: boolean | number | bigint | Uint8Array;", - "mainBuggyLine": "2052" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2064", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface HuksHandle", - "mainBuggyLine": "2064" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2070", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "errorCode: number;", - "mainBuggyLine": "2070" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2070", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "errorCode: number;", - "mainBuggyLine": "2070" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2076", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "handle: number;", - "mainBuggyLine": "2076" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2076", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "handle: number;", - "mainBuggyLine": "2076" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2082", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "token?: Uint8Array;", - "mainBuggyLine": "2082" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2082", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "token?: Uint8Array;", - "mainBuggyLine": "2082" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2110", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "handle: number;", - "mainBuggyLine": "2110" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2120", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "challenge?: Uint8Array;", - "mainBuggyLine": "2120" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2148", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "properties?: Array;", - "mainBuggyLine": "2148" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2158", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "inData?: Uint8Array;", - "mainBuggyLine": "2158" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2170", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface HuksResult", - "mainBuggyLine": "2170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2176", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "errorCode: number;", - "mainBuggyLine": "2176" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2176", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "errorCode: number;", - "mainBuggyLine": "2176" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2182", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "outData?: Uint8Array;", - "mainBuggyLine": "2182" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2182", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "outData?: Uint8Array;", - "mainBuggyLine": "2182" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2188", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "properties?: Array;", - "mainBuggyLine": "2188" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2188", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "properties?: Array;", - "mainBuggyLine": "2188" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2194", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "certChains?: Array;", - "mainBuggyLine": "2194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2194", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "certChains?: Array;", - "mainBuggyLine": "2194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2222", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "outData?: Uint8Array;", - "mainBuggyLine": "2222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2232", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "properties?: Array;", - "mainBuggyLine": "2232" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2242", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "certChains?: Array;", - "mainBuggyLine": "2242" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2275", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum HuksErrorCode", - "mainBuggyLine": "2275" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2281", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_SUCCESS = 0", - "mainBuggyLine": "2281" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2287", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_FAILURE = -1", - "mainBuggyLine": "2287" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2293", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_BAD_STATE = -2", - "mainBuggyLine": "2293" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2299", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INVALID_ARGUMENT = -3", - "mainBuggyLine": "2299" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2305", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_NOT_SUPPORTED = -4", - "mainBuggyLine": "2305" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2311", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_NO_PERMISSION = -5", - "mainBuggyLine": "2311" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2317", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INSUFFICIENT_DATA = -6", - "mainBuggyLine": "2317" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2323", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_BUFFER_TOO_SMALL = -7", - "mainBuggyLine": "2323" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2329", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INSUFFICIENT_MEMORY = -8", - "mainBuggyLine": "2329" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2335", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_COMMUNICATION_FAILURE = -9", - "mainBuggyLine": "2335" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2341", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_STORAGE_FAILURE = -10", - "mainBuggyLine": "2341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2347", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_HARDWARE_FAILURE = -11", - "mainBuggyLine": "2347" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2353", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_ALREADY_EXISTS = -12", - "mainBuggyLine": "2353" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2359", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_NOT_EXIST = -13", - "mainBuggyLine": "2359" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2365", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_NULL_POINTER = -14", - "mainBuggyLine": "2365" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2371", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_FILE_SIZE_FAIL = -15", - "mainBuggyLine": "2371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2377", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_READ_FILE_FAIL = -16", - "mainBuggyLine": "2377" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2383", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INVALID_PUBLIC_KEY = -17", - "mainBuggyLine": "2383" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2389", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INVALID_PRIVATE_KEY = -18", - "mainBuggyLine": "2389" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2395", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INVALID_KEY_INFO = -19", - "mainBuggyLine": "2395" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2401", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_HASH_NOT_EQUAL = -20", - "mainBuggyLine": "2401" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2407", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_MALLOC_FAIL = -21", - "mainBuggyLine": "2407" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2413", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_WRITE_FILE_FAIL = -22", - "mainBuggyLine": "2413" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2419", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_REMOVE_FILE_FAIL = -23", - "mainBuggyLine": "2419" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2425", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_OPEN_FILE_FAIL = -24", - "mainBuggyLine": "2425" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2431", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_CLOSE_FILE_FAIL = -25", - "mainBuggyLine": "2431" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2437", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_MAKE_DIR_FAIL = -26", - "mainBuggyLine": "2437" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2443", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INVALID_KEY_FILE = -27", - "mainBuggyLine": "2443" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2449", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_IPC_MSG_FAIL = -28", - "mainBuggyLine": "2449" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2455", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_REQUEST_OVERFLOWS = -29", - "mainBuggyLine": "2455" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2461", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_PARAM_NOT_EXIST = -30", - "mainBuggyLine": "2461" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2467", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_CRYPTO_ENGINE_ERROR = -31", - "mainBuggyLine": "2467" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2473", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_COMMUNICATION_TIMEOUT = -32", - "mainBuggyLine": "2473" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2479", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_IPC_INIT_FAIL = -33", - "mainBuggyLine": "2479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2485", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_IPC_DLOPEN_FAIL = -34", - "mainBuggyLine": "2485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2491", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_EFUSE_READ_FAIL = -35", - "mainBuggyLine": "2491" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2497", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_NEW_ROOT_KEY_MATERIAL_EXIST = -36", - "mainBuggyLine": "2497" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2503", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_UPDATE_ROOT_KEY_MATERIAL_FAIL = -37", - "mainBuggyLine": "2503" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2509", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_VERIFICATION_FAILED = -38", - "mainBuggyLine": "2509" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2515", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_CHECK_GET_ALG_FAIL = -100", - "mainBuggyLine": "2515" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2521", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_CHECK_GET_KEY_SIZE_FAIL = -101", - "mainBuggyLine": "2521" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2527", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_CHECK_GET_PADDING_FAIL = -102", - "mainBuggyLine": "2527" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2533", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_CHECK_GET_PURPOSE_FAIL = -103", - "mainBuggyLine": "2533" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2539", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_CHECK_GET_DIGEST_FAIL = -104", - "mainBuggyLine": "2539" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2545", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_CHECK_GET_MODE_FAIL = -105", - "mainBuggyLine": "2545" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2551", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_CHECK_GET_NONCE_FAIL = -106", - "mainBuggyLine": "2551" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2557", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_CHECK_GET_AAD_FAIL = -107", - "mainBuggyLine": "2557" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2563", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_CHECK_GET_IV_FAIL = -108", - "mainBuggyLine": "2563" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2569", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_CHECK_GET_AE_TAG_FAIL = -109", - "mainBuggyLine": "2569" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2575", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_CHECK_GET_SALT_FAIL = -110", - "mainBuggyLine": "2575" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2581", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_CHECK_GET_ITERATION_FAIL = -111", - "mainBuggyLine": "2581" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2587", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INVALID_ALGORITHM = -112", - "mainBuggyLine": "2587" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2593", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INVALID_KEY_SIZE = -113", - "mainBuggyLine": "2593" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2599", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INVALID_PADDING = -114", - "mainBuggyLine": "2599" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2605", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INVALID_PURPOSE = -115", - "mainBuggyLine": "2605" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2611", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INVALID_MODE = -116", - "mainBuggyLine": "2611" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2617", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INVALID_DIGEST = -117", - "mainBuggyLine": "2617" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2623", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INVALID_SIGNATURE_SIZE = -118", - "mainBuggyLine": "2623" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2629", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INVALID_IV = -119", - "mainBuggyLine": "2629" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2635", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INVALID_AAD = -120", - "mainBuggyLine": "2635" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2641", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INVALID_NONCE = -121", - "mainBuggyLine": "2641" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2647", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INVALID_AE_TAG = -122", - "mainBuggyLine": "2647" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2653", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INVALID_SALT = -123", - "mainBuggyLine": "2653" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2659", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INVALID_ITERATION = -124", - "mainBuggyLine": "2659" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2665", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INVALID_OPERATION = -125", - "mainBuggyLine": "2665" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2671", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_INTERNAL_ERROR = -999", - "mainBuggyLine": "2671" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2677", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERROR_UNKNOWN_ERROR = -1000", - "mainBuggyLine": "2677" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "2712", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_ERR_CODE_NOT_SYSTEM_APP = 202", - "mainBuggyLine": "2712" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "3446", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_AES_KEY_SIZE_512 = 512", - "mainBuggyLine": "3446" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "3838", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_STORAGE_TEMP = 0", - "mainBuggyLine": "3838" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "3844", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_STORAGE_PERSISTENT = 1", - "mainBuggyLine": "3844" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "4397", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_INVALID = HuksTagType.HUKS_TAG_TYPE_INVALID | 0", - "mainBuggyLine": "4397" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "4532", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_PWD = HuksTagType.HUKS_TAG_TYPE_BYTES | 13", - "mainBuggyLine": "4532" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "4564", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_DERIVE_MAIN_KEY = HuksTagType.HUKS_TAG_TYPE_BYTES | 16", - "mainBuggyLine": "4564" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "4570", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_DERIVE_FACTOR = HuksTagType.HUKS_TAG_TYPE_BYTES | 17", - "mainBuggyLine": "4570" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "4576", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_DERIVE_ALG = HuksTagType.HUKS_TAG_TYPE_UINT | 18", - "mainBuggyLine": "4576" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "4704", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_ACTIVE_DATETIME = HuksTagType.HUKS_TAG_TYPE_ULONG | 201", - "mainBuggyLine": "4704" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "4712", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_ORIGINATION_EXPIRE_DATETIME = HuksTagType.HUKS_TAG_TYPE_ULONG | 202", - "mainBuggyLine": "4712" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "4720", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_USAGE_EXPIRE_DATETIME = HuksTagType.HUKS_TAG_TYPE_ULONG | 203", - "mainBuggyLine": "4720" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "4728", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_CREATION_DATETIME = HuksTagType.HUKS_TAG_TYPE_ULONG | 204", - "mainBuggyLine": "4728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "4893", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_ATTESTATION_ID_BRAND = HuksTagType.HUKS_TAG_TYPE_BYTES | 503", - "mainBuggyLine": "4893" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "4899", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_ATTESTATION_ID_DEVICE = HuksTagType.HUKS_TAG_TYPE_BYTES | 504", - "mainBuggyLine": "4899" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "4905", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_ATTESTATION_ID_PRODUCT = HuksTagType.HUKS_TAG_TYPE_BYTES | 505", - "mainBuggyLine": "4905" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "4911", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_ATTESTATION_ID_SERIAL = HuksTagType.HUKS_TAG_TYPE_BYTES | 506", - "mainBuggyLine": "4911" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "4917", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_ATTESTATION_ID_IMEI = HuksTagType.HUKS_TAG_TYPE_BYTES | 507", - "mainBuggyLine": "4917" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "4923", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_ATTESTATION_ID_MEID = HuksTagType.HUKS_TAG_TYPE_BYTES | 508", - "mainBuggyLine": "4923" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "4929", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_ATTESTATION_ID_MANUFACTURER = HuksTagType.HUKS_TAG_TYPE_BYTES | 509", - "mainBuggyLine": "4929" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "4935", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_ATTESTATION_ID_MODEL = HuksTagType.HUKS_TAG_TYPE_BYTES | 510", - "mainBuggyLine": "4935" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "4951", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_ATTESTATION_ID_SOCID = HuksTagType.HUKS_TAG_TYPE_BYTES | 512", - "mainBuggyLine": "4951" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "4957", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_ATTESTATION_ID_UDID = HuksTagType.HUKS_TAG_TYPE_BYTES | 513", - "mainBuggyLine": "4957" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "5078", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_SECURE_KEY_ALIAS = HuksTagType.HUKS_TAG_TYPE_BOOL | 1009", - "mainBuggyLine": "5078" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "5084", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_SECURE_KEY_UUID = HuksTagType.HUKS_TAG_TYPE_BYTES | 1010", - "mainBuggyLine": "5084" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "5118", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_PROCESS_NAME = HuksTagType.HUKS_TAG_TYPE_BYTES | 10001", - "mainBuggyLine": "5118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "5124", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_PACKAGE_NAME = HuksTagType.HUKS_TAG_TYPE_BYTES | 10002", - "mainBuggyLine": "5124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "5130", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_ACCESS_TIME = HuksTagType.HUKS_TAG_TYPE_UINT | 10003", - "mainBuggyLine": "5130" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "5136", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_USES_TIME = HuksTagType.HUKS_TAG_TYPE_UINT | 10004", - "mainBuggyLine": "5136" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "5142", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_CRYPTO_CTX = HuksTagType.HUKS_TAG_TYPE_ULONG | 10005", - "mainBuggyLine": "5142" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "5158", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_KEY_VERSION = HuksTagType.HUKS_TAG_TYPE_UINT | 10007", - "mainBuggyLine": "5158" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "5164", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_PAYLOAD_LEN = HuksTagType.HUKS_TAG_TYPE_UINT | 10008", - "mainBuggyLine": "5164" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "5182", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_IS_KEY_HANDLE = HuksTagType.HUKS_TAG_TYPE_ULONG | 10010", - "mainBuggyLine": "5182" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "5191", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_OS_VERSION = HuksTagType.HUKS_TAG_TYPE_UINT | 10101", - "mainBuggyLine": "5191" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts", - "codeContextStaerLine": "5197", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUKS_TAG_OS_PATCHLEVEL = HuksTagType.HUKS_TAG_TYPE_UINT | 10102", - "mainBuggyLine": "5197" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "82", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AMBIENT_LIGHT = 5", - "mainBuggyLine": "82" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "89", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MAGNETIC_FIELD = 6", - "mainBuggyLine": "89" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "96", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "BAROMETER = 8", - "mainBuggyLine": "96" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "103", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HALL = 10", - "mainBuggyLine": "103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "110", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PROXIMITY = 12", - "mainBuggyLine": "110" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "117", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HUMIDITY = 13", - "mainBuggyLine": "117" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "125", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COLOR = 14", - "mainBuggyLine": "125" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "133", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SAR = 15", - "mainBuggyLine": "133" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "153", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GRAVITY = 257", - "mainBuggyLine": "153" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "160", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LINEAR_ACCELEROMETER = 258", - "mainBuggyLine": "160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "167", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ROTATION_VECTOR = 259", - "mainBuggyLine": "167" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "174", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AMBIENT_TEMPERATURE = 260", - "mainBuggyLine": "174" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "181", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MAGNETIC_FIELD_UNCALIBRATED = 261", - "mainBuggyLine": "181" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "188", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GYROSCOPE_UNCALIBRATED = 263", - "mainBuggyLine": "188" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "195", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SIGNIFICANT_MOTION = 264", - "mainBuggyLine": "195" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "202", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PEDOMETER_DETECTION = 265", - "mainBuggyLine": "202" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "209", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PEDOMETER = 266", - "mainBuggyLine": "209" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "216", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "HEART_RATE = 278", - "mainBuggyLine": "216" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "223", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WEAR_DETECTION = 280", - "mainBuggyLine": "223" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "230", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ACCELEROMETER_UNCALIBRATED = 281", - "mainBuggyLine": "230" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "258", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorId.COLOR, callback: Callback, options?: Options): void;", - "mainBuggyLine": "258" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "285", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorId.SAR, callback: Callback, options?: Options): void;", - "mainBuggyLine": "285" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "330", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "344", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorId.AMBIENT_LIGHT, callback: Callback, options?: Options): void;", - "mainBuggyLine": "344" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "357", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "371", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorId.BAROMETER, callback: Callback, options?: Options): void;", - "mainBuggyLine": "371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "384", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorId.GRAVITY, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "384" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "430", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "430" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "444", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorId.HALL, callback: Callback, options?: Options): void;", - "mainBuggyLine": "444" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "459", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorId.HEART_RATE, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "459" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "473", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorId.HUMIDITY, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "473" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "489", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "489" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "503", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorId.MAGNETIC_FIELD, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "503" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "518", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "560", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorId.PEDOMETER, callback: Callback, options?: Options): void;", - "mainBuggyLine": "560" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "575", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorId.PEDOMETER_DETECTION, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "575" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "589", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorId.PROXIMITY, callback: Callback, options?: Options): void;", - "mainBuggyLine": "589" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "602", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorId.ROTATION_VECTOR, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "602" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "616", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorId.SIGNIFICANT_MOTION, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "616" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "630", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorId.WEAR_DETECTION, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "630" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "645", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorId.ACCELEROMETER, callback: Callback): void;", - "mainBuggyLine": "645" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "659", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback): void;", - "mainBuggyLine": "659" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "671", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorId.AMBIENT_LIGHT, callback: Callback): void;", - "mainBuggyLine": "671" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "683", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback): void;", - "mainBuggyLine": "683" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "695", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorId.BAROMETER, callback: Callback): void;", - "mainBuggyLine": "695" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "707", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorId.GRAVITY, callback: Callback): void;", - "mainBuggyLine": "707" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "721", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorId.GYROSCOPE, callback: Callback): void;", - "mainBuggyLine": "721" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "735", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback): void;", - "mainBuggyLine": "735" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "747", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorId.HALL, callback: Callback): void;", - "mainBuggyLine": "747" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "761", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorId.HEART_RATE, callback: Callback): void;", - "mainBuggyLine": "761" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "773", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorId.HUMIDITY, callback: Callback): void;", - "mainBuggyLine": "773" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "787", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback): void;", - "mainBuggyLine": "787" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "799", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorId.MAGNETIC_FIELD, callback: Callback): void;", - "mainBuggyLine": "799" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "812", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback): void;", - "mainBuggyLine": "812" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "824", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorId.ORIENTATION, callback: Callback): void;", - "mainBuggyLine": "824" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "838", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorId.PEDOMETER, callback: Callback): void;", - "mainBuggyLine": "838" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "852", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback): void;", - "mainBuggyLine": "852" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "864", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorId.PROXIMITY, callback: Callback): void;", - "mainBuggyLine": "864" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "876", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorId.ROTATION_VECTOR, callback: Callback): void;", - "mainBuggyLine": "876" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "888", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback): void;", - "mainBuggyLine": "888" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "901", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorId.WEAR_DETECTION, callback: Callback): void;", - "mainBuggyLine": "901" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "924", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorId.COLOR, callback?: Callback): void;", - "mainBuggyLine": "924" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "947", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorId.SAR, callback?: Callback): void;", - "mainBuggyLine": "947" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "986", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback?: Callback): void;", - "mainBuggyLine": "986" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "997", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorId.AMBIENT_LIGHT, callback?: Callback): void;", - "mainBuggyLine": "997" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1008", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorId.AMBIENT_TEMPERATURE, callback?: Callback): void;", - "mainBuggyLine": "1008" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1019", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorId.BAROMETER, callback?: Callback): void;", - "mainBuggyLine": "1019" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1030", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorId.GRAVITY, callback?: Callback): void;", - "mainBuggyLine": "1030" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1068", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorId.GYROSCOPE_UNCALIBRATED, callback?: Callback): void;", - "mainBuggyLine": "1068" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1079", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorId.HALL, callback?: Callback): void;", - "mainBuggyLine": "1079" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1092", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorId.HEART_RATE, callback?: Callback): void;", - "mainBuggyLine": "1092" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1103", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorId.HUMIDITY, callback?: Callback): void;", - "mainBuggyLine": "1103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1116", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorId.LINEAR_ACCELEROMETER, callback?: Callback): void;", - "mainBuggyLine": "1116" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1127", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorId.MAGNETIC_FIELD, callback?: Callback): void;", - "mainBuggyLine": "1127" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1139", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback?: Callback): void;", - "mainBuggyLine": "1139" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1173", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorId.PEDOMETER, callback?: Callback): void;", - "mainBuggyLine": "1173" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1186", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorId.PEDOMETER_DETECTION, callback?: Callback): void;", - "mainBuggyLine": "1186" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1197", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorId.PROXIMITY, callback?: Callback): void;", - "mainBuggyLine": "1197" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1208", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorId.ROTATION_VECTOR, callback?: Callback): void;", - "mainBuggyLine": "1208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1219", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorId.SIGNIFICANT_MOTION, callback?: Callback): void;", - "mainBuggyLine": "1219" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1230", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorId.WEAR_DETECTION, callback?: Callback): void;", - "mainBuggyLine": "1230" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1244", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1244" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1259", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1259" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1273", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1273" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1287", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1287" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1301", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1301" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1315", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1315" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1330", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1345", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1345" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1359", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1359" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1374", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1374" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1374", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1374" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1388", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1388" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1403", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1403" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1417", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1417" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1431", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1431" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1445", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1445" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1460", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1460" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1475", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1475" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1489", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1489" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1503", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1503" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1517", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1517" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1531", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback,\r\n options?: Options): void;", - "mainBuggyLine": "1531" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1545", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback: Callback): void;", - "mainBuggyLine": "1545" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1558", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED, callback: Callback): void;", - "mainBuggyLine": "1558" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1570", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback: Callback): void;", - "mainBuggyLine": "1570" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1582", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback: Callback): void;", - "mainBuggyLine": "1582" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1594", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback: Callback): void;", - "mainBuggyLine": "1594" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1606", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback: Callback): void;", - "mainBuggyLine": "1606" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1619", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback: Callback): void;", - "mainBuggyLine": "1619" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1632", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback: Callback): void;", - "mainBuggyLine": "1632" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1644", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_HALL, callback: Callback): void;", - "mainBuggyLine": "1644" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1657", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback): void;", - "mainBuggyLine": "1657" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1657", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback: Callback): void;", - "mainBuggyLine": "1657" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1669", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback: Callback): void;", - "mainBuggyLine": "1669" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1682", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback): void;", - "mainBuggyLine": "1682" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1682", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback: Callback): void;", - "mainBuggyLine": "1682" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1694", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback: Callback): void;", - "mainBuggyLine": "1694" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1706", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback: Callback): void;", - "mainBuggyLine": "1706" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1718", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback): void;", - "mainBuggyLine": "1718" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1731", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback: Callback): void;", - "mainBuggyLine": "1731" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1744", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback: Callback): void;", - "mainBuggyLine": "1744" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1756", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback: Callback): void;", - "mainBuggyLine": "1756" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1768", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback): void;", - "mainBuggyLine": "1768" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1780", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback: Callback): void;", - "mainBuggyLine": "1780" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1792", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function once(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback: Callback): void;", - "mainBuggyLine": "1792" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1805", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER, callback?: Callback): void;", - "mainBuggyLine": "1805" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1818", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED,\r\n callback?: Callback): void;", - "mainBuggyLine": "1818" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1831", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_AMBIENT_LIGHT, callback?: Callback): void;", - "mainBuggyLine": "1831" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1843", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_AMBIENT_TEMPERATURE, callback?: Callback): void;", - "mainBuggyLine": "1843" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1855", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_BAROMETER, callback?: Callback): void;", - "mainBuggyLine": "1855" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1867", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_GRAVITY, callback?: Callback): void;", - "mainBuggyLine": "1867" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1880", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE, callback?: Callback): void;", - "mainBuggyLine": "1880" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1893", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED, callback?: Callback): void;", - "mainBuggyLine": "1893" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1905", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_HALL, callback?: Callback): void;", - "mainBuggyLine": "1905" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1918", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback?: Callback): void;", - "mainBuggyLine": "1918" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1918", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_HEART_RATE, callback?: Callback): void;", - "mainBuggyLine": "1918" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1930", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback?: Callback): void;", - "mainBuggyLine": "1930" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1943", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback?: Callback): void;", - "mainBuggyLine": "1943" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1955", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD, callback?: Callback): void;", - "mainBuggyLine": "1955" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1967", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callback?: Callback): void;", - "mainBuggyLine": "1967" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1979", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_ORIENTATION, callback?: Callback): void;", - "mainBuggyLine": "1979" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "1991", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback?: Callback): void;", - "mainBuggyLine": "1991" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2004", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_PEDOMETER_DETECTION, callback?: Callback): void;", - "mainBuggyLine": "2004" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2016", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_PROXIMITY, callback?: Callback): void;", - "mainBuggyLine": "2016" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2028", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback?: Callback): void;", - "mainBuggyLine": "2028" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2040", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_SIGNIFICANT_MOTION, callback?: Callback): void;", - "mainBuggyLine": "2040" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2052", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: SensorType.SENSOR_TYPE_ID_WEAR_DETECTION, callback?: Callback): void;", - "mainBuggyLine": "2052" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2060", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Sensor", - "mainBuggyLine": "2060" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2067", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sensorName:string;", - "mainBuggyLine": "2067" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2075", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "vendorName:string;", - "mainBuggyLine": "2075" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2083", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "firmwareVersion:string;", - "mainBuggyLine": "2083" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2091", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hardwareVersion:string;", - "mainBuggyLine": "2091" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2099", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sensorId:number;", - "mainBuggyLine": "2099" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2107", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maxRange:number;", - "mainBuggyLine": "2107" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2115", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "minSamplePeriod:number;", - "mainBuggyLine": "2115" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2123", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maxSamplePeriod:number;", - "mainBuggyLine": "2123" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2131", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "precision:number;", - "mainBuggyLine": "2131" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2139", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "power:number;", - "mainBuggyLine": "2139" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2163", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getSingleSensor(type: SensorId, callback: AsyncCallback): void;", - "mainBuggyLine": "2163" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2186", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getSingleSensor(type: SensorId): Promise;", - "mainBuggyLine": "2186" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2199", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getSingleSensorSync(type: SensorId): Sensor;", - "mainBuggyLine": "2199" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2210", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getSensorList(callback: AsyncCallback>): void;", - "mainBuggyLine": "2210" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2221", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getSensorList(): Promise>;", - "mainBuggyLine": "2221" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2230", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getSensorListSync(): Array;", - "mainBuggyLine": "2230" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2238", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface GeomagneticResponse", - "mainBuggyLine": "2238" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2245", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "x: number;", - "mainBuggyLine": "2245" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2253", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "y: number;", - "mainBuggyLine": "2253" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2261", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "z: number;", - "mainBuggyLine": "2261" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2269", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "geomagneticDip: number;", - "mainBuggyLine": "2269" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2277", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deflectionAngle: number;", - "mainBuggyLine": "2277" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2285", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "levelIntensity: number;", - "mainBuggyLine": "2285" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2293", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "totalIntensity: number;", - "mainBuggyLine": "2293" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2302", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface LocationOptions", - "mainBuggyLine": "2302" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2309", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "latitude: number;", - "mainBuggyLine": "2309" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2317", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "longitude: number;", - "mainBuggyLine": "2317" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2325", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "altitude: number;", - "mainBuggyLine": "2325" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2339", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getGeomagneticField(locationOptions: LocationOptions, timeMillis: number, callback: AsyncCallback): void;", - "mainBuggyLine": "2339" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2352", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getGeomagneticField(locationOptions: LocationOptions, timeMillis: number): Promise;", - "mainBuggyLine": "2352" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2366", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getGeomagneticInfo(locationOptions: LocationOptions, timeMillis: number, callback: AsyncCallback): void;", - "mainBuggyLine": "2366" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2380", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getGeomagneticInfo(locationOptions: LocationOptions, timeMillis: number): Promise;", - "mainBuggyLine": "2380" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2392", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAltitude(seaPressure: number, currentPressure: number, callback: AsyncCallback): void;", - "mainBuggyLine": "2392" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2404", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAltitude(seaPressure: number, currentPressure: number): Promise;", - "mainBuggyLine": "2404" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2417", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getDeviceAltitude(seaPressure: number, currentPressure: number, callback: AsyncCallback): void;", - "mainBuggyLine": "2417" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2430", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getDeviceAltitude(seaPressure: number, currentPressure: number): Promise;", - "mainBuggyLine": "2430" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2441", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getGeomagneticDip(inclinationMatrix: Array, callback: AsyncCallback): void;", - "mainBuggyLine": "2441" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2452", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getGeomagneticDip(inclinationMatrix: Array): Promise;", - "mainBuggyLine": "2452" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2464", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getInclination(inclinationMatrix: Array, callback: AsyncCallback): void;", - "mainBuggyLine": "2464" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2476", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getInclination(inclinationMatrix: Array): Promise;", - "mainBuggyLine": "2476" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2488", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAngleModify(currentRotationMatrix: Array, preRotationMatrix: Array,\r\n callback: AsyncCallback>): void;", - "mainBuggyLine": "2488" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2501", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAngleModify(currentRotationMatrix: Array, preRotationMatrix: Array): Promise>;", - "mainBuggyLine": "2501" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2514", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAngleVariation(currentRotationMatrix: Array, preRotationMatrix: Array,\r\n callback: AsyncCallback>): void;", - "mainBuggyLine": "2514" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2528", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getAngleVariation(currentRotationMatrix: Array, preRotationMatrix: Array): Promise>;", - "mainBuggyLine": "2528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2539", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createRotationMatrix(rotationVector: Array, callback: AsyncCallback>): void;", - "mainBuggyLine": "2539" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2550", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createRotationMatrix(rotationVector: Array): Promise>;", - "mainBuggyLine": "2550" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2562", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getRotationMatrix(rotationVector: Array, callback: AsyncCallback>): void;", - "mainBuggyLine": "2562" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2574", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getRotationMatrix(rotationVector: Array): Promise>;", - "mainBuggyLine": "2574" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2582", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface CoordinatesOptions", - "mainBuggyLine": "2582" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2588", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "x: number;", - "mainBuggyLine": "2588" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2595", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "y: number;", - "mainBuggyLine": "2595" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2608", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function transformCoordinateSystem(inRotationVector: Array, coordinates: CoordinatesOptions,\r\n callback: AsyncCallback>): void;", - "mainBuggyLine": "2608" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2621", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function transformCoordinateSystem(inRotationVector: Array, coordinates: CoordinatesOptions): Promise>;", - "mainBuggyLine": "2621" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2634", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function transformRotationMatrix(inRotationVector: Array, coordinates: CoordinatesOptions,\r\n callback: AsyncCallback>): void;", - "mainBuggyLine": "2634" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2648", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function transformRotationMatrix(inRotationVector: Array, coordinates: CoordinatesOptions): Promise>;", - "mainBuggyLine": "2648" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2659", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createQuaternion(rotationVector: Array, callback: AsyncCallback>): void;", - "mainBuggyLine": "2659" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2670", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createQuaternion(rotationVector: Array): Promise>;", - "mainBuggyLine": "2670" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2682", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getQuaternion(rotationVector: Array, callback: AsyncCallback>): void;", - "mainBuggyLine": "2682" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2694", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getQuaternion(rotationVector: Array): Promise>;", - "mainBuggyLine": "2694" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2705", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getDirection(rotationMatrix: Array, callback: AsyncCallback>): void;", - "mainBuggyLine": "2705" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2716", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getDirection(rotationMatrix: Array): Promise>;", - "mainBuggyLine": "2716" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2728", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getOrientation(rotationMatrix: Array, callback: AsyncCallback>): void;", - "mainBuggyLine": "2728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2740", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getOrientation(rotationMatrix: Array): Promise>;", - "mainBuggyLine": "2740" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2748", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface RotationMatrixResponse", - "mainBuggyLine": "2748" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2755", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "rotation: Array;", - "mainBuggyLine": "2755" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2763", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "inclination: Array", - "mainBuggyLine": "2763" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2776", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createRotationMatrix(gravity: Array, geomagnetic: Array, callback: AsyncCallback): void;", - "mainBuggyLine": "2776" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2788", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createRotationMatrix(gravity: Array, geomagnetic: Array,): Promise;", - "mainBuggyLine": "2788" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2801", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getRotationMatrix(gravity: Array, geomagnetic: Array, callback: AsyncCallback): void;", - "mainBuggyLine": "2801" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2814", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getRotationMatrix(gravity: Array, geomagnetic: Array): Promise;", - "mainBuggyLine": "2814" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2853", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type SensorFrequency = 'game' | 'ui' | 'normal';", - "mainBuggyLine": "2853" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2863", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum SensorType", - "mainBuggyLine": "2863" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2870", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSOR_TYPE_ID_ACCELEROMETER = 1", - "mainBuggyLine": "2870" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2878", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSOR_TYPE_ID_GYROSCOPE = 2", - "mainBuggyLine": "2878" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2886", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSOR_TYPE_ID_AMBIENT_LIGHT = 5", - "mainBuggyLine": "2886" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2894", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSOR_TYPE_ID_MAGNETIC_FIELD = 6", - "mainBuggyLine": "2894" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2902", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSOR_TYPE_ID_BAROMETER = 8", - "mainBuggyLine": "2902" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2910", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSOR_TYPE_ID_HALL = 10", - "mainBuggyLine": "2910" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2918", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSOR_TYPE_ID_PROXIMITY = 12", - "mainBuggyLine": "2918" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2926", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSOR_TYPE_ID_HUMIDITY = 13", - "mainBuggyLine": "2926" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2934", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSOR_TYPE_ID_ORIENTATION = 256", - "mainBuggyLine": "2934" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2942", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSOR_TYPE_ID_GRAVITY = 257", - "mainBuggyLine": "2942" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2950", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSOR_TYPE_ID_LINEAR_ACCELERATION = 258", - "mainBuggyLine": "2950" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2958", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSOR_TYPE_ID_ROTATION_VECTOR = 259", - "mainBuggyLine": "2958" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2966", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSOR_TYPE_ID_AMBIENT_TEMPERATURE = 260", - "mainBuggyLine": "2966" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2974", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED = 261", - "mainBuggyLine": "2974" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2982", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED = 263", - "mainBuggyLine": "2982" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2990", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSOR_TYPE_ID_SIGNIFICANT_MOTION = 264", - "mainBuggyLine": "2990" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "2998", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSOR_TYPE_ID_PEDOMETER_DETECTION = 265", - "mainBuggyLine": "2998" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3006", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSOR_TYPE_ID_PEDOMETER = 266", - "mainBuggyLine": "3006" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3014", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSOR_TYPE_ID_HEART_RATE = 278", - "mainBuggyLine": "3014" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3022", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSOR_TYPE_ID_WEAR_DETECTION = 280", - "mainBuggyLine": "3022" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3030", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED = 281", - "mainBuggyLine": "3030" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3126", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface AccelerometerResponse", - "mainBuggyLine": "3126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3179", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface LinearAccelerometerResponse", - "mainBuggyLine": "3179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3179", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface LinearAccelerometerResponse", - "mainBuggyLine": "3179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3186", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "x: number;", - "mainBuggyLine": "3186" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3194", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "y: number;", - "mainBuggyLine": "3194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3202", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "z: number;", - "mainBuggyLine": "3202" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3211", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AccelerometerUncalibratedResponse", - "mainBuggyLine": "3211" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3211", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface AccelerometerUncalibratedResponse", - "mainBuggyLine": "3211" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3218", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "x: number;", - "mainBuggyLine": "3218" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3226", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "y: number;", - "mainBuggyLine": "3226" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3234", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "z: number;", - "mainBuggyLine": "3234" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3243", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "biasX: number;", - "mainBuggyLine": "3243" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3252", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "biasY: number;", - "mainBuggyLine": "3252" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3261", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "biasZ: number;", - "mainBuggyLine": "3261" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3270", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface GravityResponse", - "mainBuggyLine": "3270" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3270", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface GravityResponse", - "mainBuggyLine": "3270" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3277", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "x: number;", - "mainBuggyLine": "3277" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3285", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "y: number;", - "mainBuggyLine": "3285" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3293", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "z: number;", - "mainBuggyLine": "3293" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3309", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface OrientationResponse", - "mainBuggyLine": "3309" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3362", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface RotationVectorResponse", - "mainBuggyLine": "3362" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3362", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface RotationVectorResponse", - "mainBuggyLine": "3362" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3369", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "x: number;", - "mainBuggyLine": "3369" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3377", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "y: number;", - "mainBuggyLine": "3377" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3385", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "z: number;", - "mainBuggyLine": "3385" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3393", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "w: number;", - "mainBuggyLine": "3393" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3409", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface GyroscopeResponse", - "mainBuggyLine": "3409" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3462", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface GyroscopeUncalibratedResponse", - "mainBuggyLine": "3462" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3462", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface GyroscopeUncalibratedResponse", - "mainBuggyLine": "3462" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3469", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "x: number;", - "mainBuggyLine": "3469" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3477", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "y: number;", - "mainBuggyLine": "3477" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3485", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "z: number;", - "mainBuggyLine": "3485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3493", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "biasX: number;", - "mainBuggyLine": "3493" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3501", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "biasY: number;", - "mainBuggyLine": "3501" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3509", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "biasZ: number;", - "mainBuggyLine": "3509" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3518", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface SignificantMotionResponse", - "mainBuggyLine": "3518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3518", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface SignificantMotionResponse", - "mainBuggyLine": "3518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3527", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "scalar: number;", - "mainBuggyLine": "3527" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3536", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ProximityResponse", - "mainBuggyLine": "3536" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3536", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ProximityResponse", - "mainBuggyLine": "3536" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3543", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "distance: number;", - "mainBuggyLine": "3543" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3552", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface LightResponse", - "mainBuggyLine": "3552" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3552", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface LightResponse", - "mainBuggyLine": "3552" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3559", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "intensity: number;", - "mainBuggyLine": "3559" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3567", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "colorTemperature?: number;", - "mainBuggyLine": "3567" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3575", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "infraredLuminance?: number;", - "mainBuggyLine": "3575" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3584", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface HallResponse", - "mainBuggyLine": "3584" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3584", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface HallResponse", - "mainBuggyLine": "3584" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3591", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "status: number;", - "mainBuggyLine": "3591" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3600", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface MagneticFieldResponse", - "mainBuggyLine": "3600" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3600", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface MagneticFieldResponse", - "mainBuggyLine": "3600" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3607", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "x: number;", - "mainBuggyLine": "3607" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3615", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "y: number;", - "mainBuggyLine": "3615" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3623", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "z: number;", - "mainBuggyLine": "3623" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3632", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface MagneticFieldUncalibratedResponse", - "mainBuggyLine": "3632" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3632", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface MagneticFieldUncalibratedResponse", - "mainBuggyLine": "3632" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3639", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "x: number;", - "mainBuggyLine": "3639" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3647", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "y: number;", - "mainBuggyLine": "3647" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3655", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "z: number;", - "mainBuggyLine": "3655" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3663", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "biasX: number;", - "mainBuggyLine": "3663" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3671", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "biasY: number;", - "mainBuggyLine": "3671" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3679", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "biasZ: number;", - "mainBuggyLine": "3679" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3688", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface PedometerResponse", - "mainBuggyLine": "3688" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3688", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface PedometerResponse", - "mainBuggyLine": "3688" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3695", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "steps: number;", - "mainBuggyLine": "3695" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3704", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface HumidityResponse", - "mainBuggyLine": "3704" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3704", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface HumidityResponse", - "mainBuggyLine": "3704" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3711", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "humidity: number;", - "mainBuggyLine": "3711" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3720", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface PedometerDetectionResponse", - "mainBuggyLine": "3720" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3720", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface PedometerDetectionResponse", - "mainBuggyLine": "3720" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3728", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "scalar: number;", - "mainBuggyLine": "3728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3737", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface AmbientTemperatureResponse", - "mainBuggyLine": "3737" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3737", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface AmbientTemperatureResponse", - "mainBuggyLine": "3737" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3744", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "temperature: number;", - "mainBuggyLine": "3744" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3753", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface BarometerResponse", - "mainBuggyLine": "3753" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3753", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface BarometerResponse", - "mainBuggyLine": "3753" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3760", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pressure: number;", - "mainBuggyLine": "3760" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3769", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface HeartRateResponse", - "mainBuggyLine": "3769" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3769", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface HeartRateResponse", - "mainBuggyLine": "3769" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3776", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "heartRate: number;", - "mainBuggyLine": "3776" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3785", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface WearDetectionResponse", - "mainBuggyLine": "3785" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3785", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface WearDetectionResponse", - "mainBuggyLine": "3785" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3792", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "value: number;", - "mainBuggyLine": "3792" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3802", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ColorResponse", - "mainBuggyLine": "3802" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3802", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface ColorResponse", - "mainBuggyLine": "3802" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3810", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "lightIntensity: number;", - "mainBuggyLine": "3810" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3818", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "colorTemperature: number;", - "mainBuggyLine": "3818" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3828", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface SarResponse", - "mainBuggyLine": "3828" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3828", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface SarResponse", - "mainBuggyLine": "3828" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts", - "codeContextStaerLine": "3836", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "absorptionRatio: number;", - "mainBuggyLine": "3836" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.stationary.d.ts", - "codeContextStaerLine": "45", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "state: ActivityState;", - "mainBuggyLine": "45" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.stationary.d.ts", - "codeContextStaerLine": "54", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type ActivityType = 'still' | 'relativeStill';", - "mainBuggyLine": "54" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.systemTimer.d.ts", - "codeContextStaerLine": "200", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: number;", - "mainBuggyLine": "200" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.systemTimer.d.ts", - "codeContextStaerLine": "209", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "repeat: boolean;", - "mainBuggyLine": "209" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.systemTimer.d.ts", - "codeContextStaerLine": "219", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "interval?: number;", - "mainBuggyLine": "219" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.systemTimer.d.ts", - "codeContextStaerLine": "228", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "wantAgent?: WantAgent;", - "mainBuggyLine": "228" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.systemTimer.d.ts", - "codeContextStaerLine": "237", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "callback?: () => void;", - "mainBuggyLine": "237" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.taskpool.d.ts", - "codeContextStaerLine": "159", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type CallbackFunction = () => void;", - "mainBuggyLine": "159" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.taskpool.d.ts", - "codeContextStaerLine": "171", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "type CallbackFunctionWithError = (e: Error) => void;", - "mainBuggyLine": "171" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.taskpool.d.ts", - "codeContextStaerLine": "171", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [1] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "type CallbackFunctionWithError = (e: Error) => void;", - "mainBuggyLine": "171" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.taskpool.d.ts", - "codeContextStaerLine": "171", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type CallbackFunctionWithError = (e: Error) => void;", - "mainBuggyLine": "171" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.taskpool.d.ts", - "codeContextStaerLine": "480", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "function: Function;", - "mainBuggyLine": "480" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.taskpool.d.ts", - "codeContextStaerLine": "515", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "515" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.taskpool.d.ts", - "codeContextStaerLine": "685", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "685" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function dial(phoneNumber: string, options: DialOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "72", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function dial(phoneNumber: string, options?: DialOptions): Promise;", - "mainBuggyLine": "72" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "88", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function dial(phoneNumber: string, callback: AsyncCallback): void;", - "mainBuggyLine": "88" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "111", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function dialCall(phoneNumber: string, options: DialCallOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "111" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "134", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function dialCall(phoneNumber: string, options?: DialCallOptions): Promise;", - "mainBuggyLine": "134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "156", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function dialCall(phoneNumber: string, callback: AsyncCallback): void;", - "mainBuggyLine": "156" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "228", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function hasCall(callback: AsyncCallback): void;", - "mainBuggyLine": "228" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "238", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function hasCall(): Promise;", - "mainBuggyLine": "238" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "248", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function hasCallSync(): boolean;", - "mainBuggyLine": "248" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "262", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getCallState(callback: AsyncCallback): void;", - "mainBuggyLine": "262" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "276", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getCallState(): Promise;", - "mainBuggyLine": "276" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "289", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getCallStateSync(): CallState;", - "mainBuggyLine": "289" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "310", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function muteRinger(callback: AsyncCallback): void;", - "mainBuggyLine": "310" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "328", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function muteRinger(): Promise;", - "mainBuggyLine": "328" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "341", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function hasVoiceCapability(): boolean;", - "mainBuggyLine": "341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "359", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isEmergencyPhoneNumber(phoneNumber: string, options: EmergencyNumberOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "359" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "377", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isEmergencyPhoneNumber(phoneNumber: string, options?: EmergencyNumberOptions): Promise;", - "mainBuggyLine": "377" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "394", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isEmergencyPhoneNumber(phoneNumber: string, callback: AsyncCallback): void;", - "mainBuggyLine": "394" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "415", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function formatPhoneNumber(phoneNumber: string, options: NumberFormatOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "415" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "435", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function formatPhoneNumber(phoneNumber: string, options?: NumberFormatOptions): Promise;", - "mainBuggyLine": "435" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "455", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function formatPhoneNumber(phoneNumber: string, callback: AsyncCallback): void;", - "mainBuggyLine": "455" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "473", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function formatPhoneNumberToE164(phoneNumber: string, countryCode: string, callback: AsyncCallback): void;", - "mainBuggyLine": "473" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "491", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function formatPhoneNumberToE164(phoneNumber: string, countryCode: string): Promise;", - "mainBuggyLine": "491" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "511", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function answerCall(callId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "511" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "531", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function answerCall(callId?: number): Promise;", - "mainBuggyLine": "531" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "550", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function answerCall(callback: AsyncCallback): void;", - "mainBuggyLine": "550" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "571", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function answerCall(videoState: VideoStateType, callId: number): Promise;", - "mainBuggyLine": "571" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "591", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function hangUpCall(callId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "591" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "611", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function hangUpCall(callId?: number): Promise;", - "mainBuggyLine": "611" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "630", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function hangUpCall(callback: AsyncCallback): void;", - "mainBuggyLine": "630" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "651", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function rejectCall(callId: number, options: RejectMessageOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "651" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "672", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function rejectCall(callId?: number, options?: RejectMessageOptions): Promise;", - "mainBuggyLine": "672" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "692", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function rejectCall(callId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "692" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "711", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function rejectCall(callback: AsyncCallback): void;", - "mainBuggyLine": "711" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "731", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function rejectCall(options: RejectMessageOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "731" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "751", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function holdCall(callId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "751" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "771", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function holdCall(callId: number): Promise;", - "mainBuggyLine": "771" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "791", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function unHoldCall(callId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "791" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "811", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function unHoldCall(callId: number): Promise;", - "mainBuggyLine": "811" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "831", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function switchCall(callId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "831" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "851", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function switchCall(callId: number): Promise;", - "mainBuggyLine": "851" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "870", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function combineConference(callId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "870" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "889", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function combineConference(callId: number): Promise;", - "mainBuggyLine": "889" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "907", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getMainCallId(callId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "907" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "925", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getMainCallId(callId: number): Promise;", - "mainBuggyLine": "925" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "943", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getSubCallIdList(callId: number, callback: AsyncCallback>): void;", - "mainBuggyLine": "943" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "961", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getSubCallIdList(callId: number): Promise>;", - "mainBuggyLine": "961" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "980", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getCallIdListForConference(callId: number, callback: AsyncCallback>): void;", - "mainBuggyLine": "980" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "998", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getCallIdListForConference(callId: number): Promise>;", - "mainBuggyLine": "998" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1019", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getCallWaitingStatus(slotId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1019" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1040", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getCallWaitingStatus(slotId: number): Promise;", - "mainBuggyLine": "1040" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1062", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setCallWaiting(slotId: number, activate: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "1062" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1084", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setCallWaiting(slotId: number, activate: boolean): Promise;", - "mainBuggyLine": "1084" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1103", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function startDTMF(callId: number, character: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1122", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function startDTMF(callId: number, character: string): Promise;", - "mainBuggyLine": "1122" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1140", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function stopDTMF(callId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1140" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1158", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function stopDTMF(callId: number): Promise;", - "mainBuggyLine": "1158" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1179", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function postDialProceed(callId: number, proceed: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "1179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1200", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function postDialProceed(callId: number, proceed: boolean): Promise;", - "mainBuggyLine": "1200" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1220", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isInEmergencyCall(callback: AsyncCallback): void;", - "mainBuggyLine": "1220" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1236", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isInEmergencyCall(): Promise;", - "mainBuggyLine": "1236" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1256", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'callDetailsChange', callback: Callback): void;", - "mainBuggyLine": "1256" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1277", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'callDetailsChange', callback?: Callback): void;", - "mainBuggyLine": "1277" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1297", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'callEventChange', callback: Callback): void;", - "mainBuggyLine": "1297" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1317", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'callEventChange', callback?: Callback): void;", - "mainBuggyLine": "1317" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1337", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'callDisconnectedCause', callback: Callback): void;", - "mainBuggyLine": "1337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1358", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'callDisconnectedCause', callback?: Callback): void;", - "mainBuggyLine": "1358" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1378", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'mmiCodeResult', callback: Callback): void;", - "mainBuggyLine": "1378" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1398", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'mmiCodeResult', callback?: Callback): void;", - "mainBuggyLine": "1398" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1418", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'audioDeviceChange', callback: Callback): void;", - "mainBuggyLine": "1418" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1438", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'audioDeviceChange', callback?: Callback): void;", - "mainBuggyLine": "1438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1458", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'postDialDelay', callback: Callback): void;", - "mainBuggyLine": "1458" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1478", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'postDialDelay', callback?: Callback): void;", - "mainBuggyLine": "1478" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1496", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isNewCallAllowed(callback: AsyncCallback): void;", - "mainBuggyLine": "1496" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1511", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isNewCallAllowed(): Promise;", - "mainBuggyLine": "1511" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1530", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function separateConference(callId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1530" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1549", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function separateConference(callId: number): Promise;", - "mainBuggyLine": "1549" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1571", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getCallRestrictionStatus(slotId: number, type: CallRestrictionType, callback: AsyncCallback): void;", - "mainBuggyLine": "1571" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1593", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getCallRestrictionStatus(slotId: number, type: CallRestrictionType): Promise;", - "mainBuggyLine": "1593" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1615", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setCallRestriction(slotId: number, info: CallRestrictionInfo, callback: AsyncCallback): void;", - "mainBuggyLine": "1615" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1637", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setCallRestriction(slotId: number, info: CallRestrictionInfo): Promise;", - "mainBuggyLine": "1637" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1660", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setCallRestrictionPassword(slotId: number, oldPassword: string, newPassword: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1660" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1683", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setCallRestrictionPassword(slotId: number, oldPassword: string, newPassword: string): Promise;", - "mainBuggyLine": "1683" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1705", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getCallTransferInfo(slotId: number, type: CallTransferType, callback: AsyncCallback): void;", - "mainBuggyLine": "1705" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1727", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getCallTransferInfo(slotId: number, type: CallTransferType): Promise;", - "mainBuggyLine": "1727" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1749", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setCallTransfer(slotId: number, info: CallTransferInfo, callback: AsyncCallback): void;", - "mainBuggyLine": "1749" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1771", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setCallTransfer(slotId: number, info: CallTransferInfo): Promise;", - "mainBuggyLine": "1771" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1791", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isRinging(callback: AsyncCallback): void;", - "mainBuggyLine": "1791" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1807", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isRinging(): Promise;", - "mainBuggyLine": "1807" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1824", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setMuted(callback: AsyncCallback): void;", - "mainBuggyLine": "1824" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1838", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setMuted(): Promise;", - "mainBuggyLine": "1838" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1855", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function cancelMuted(callback: AsyncCallback): void;", - "mainBuggyLine": "1855" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1869", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function cancelMuted(): Promise;", - "mainBuggyLine": "1869" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1889", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setAudioDevice(device: AudioDevice, callback: AsyncCallback): void;", - "mainBuggyLine": "1889" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1909", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setAudioDevice(device: AudioDevice): Promise;", - "mainBuggyLine": "1909" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1928", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function joinConference(mainCallId: number, callNumberList: Array, callback: AsyncCallback): void;", - "mainBuggyLine": "1928" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1947", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function joinConference(mainCallId: number, callNumberList: Array): Promise;", - "mainBuggyLine": "1947" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1967", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function kickOutFromConference(callId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1967" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "1987", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function kickOutFromConference(callId: number): Promise;", - "mainBuggyLine": "1987" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2006", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function updateImsCallMode(callId: number, mode: ImsCallMode, callback: AsyncCallback): void;", - "mainBuggyLine": "2006" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2025", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function updateImsCallMode(callId: number, mode: ImsCallMode): Promise;", - "mainBuggyLine": "2025" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2045", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function cancelCallUpgrade(callId: number): Promise;", - "mainBuggyLine": "2045" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2066", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function controlCamera(callId: number, cameraId: string): Promise;", - "mainBuggyLine": "2066" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2087", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setPreviewSurface(callId: number, surfaceId: string): Promise;", - "mainBuggyLine": "2087" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2108", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setDisplaySurface(callId: number, surfaceId: string): Promise;", - "mainBuggyLine": "2108" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2129", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setDeviceDirection(callId: number, deviceDirection: DeviceDirection): Promise;", - "mainBuggyLine": "2129" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2150", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'imsCallModeChange', callback: Callback): void;", - "mainBuggyLine": "2150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2171", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'imsCallModeChange', callback?: Callback): void;", - "mainBuggyLine": "2171" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2193", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'callSessionEvent', callback: Callback): void;", - "mainBuggyLine": "2193" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2215", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'callSessionEvent', callback?: Callback): void;", - "mainBuggyLine": "2215" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2237", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'peerDimensionsChange', callback: Callback): void;", - "mainBuggyLine": "2237" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2259", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'peerDimensionsChange', callback?: Callback): void;", - "mainBuggyLine": "2259" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2281", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'cameraCapabilitiesChange', callback: Callback): void;", - "mainBuggyLine": "2281" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2303", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'cameraCapabilitiesChange', callback?: Callback): void;", - "mainBuggyLine": "2303" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2324", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function enableImsSwitch(slotId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "2324" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2345", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function enableImsSwitch(slotId: number): Promise;", - "mainBuggyLine": "2345" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2366", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function disableImsSwitch(slotId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "2366" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2387", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function disableImsSwitch(slotId: number): Promise;", - "mainBuggyLine": "2387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2407", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isImsSwitchEnabled(slotId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "2407" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2426", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isImsSwitchEnabled(slotId: number): Promise;", - "mainBuggyLine": "2426" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2447", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function closeUnfinishedUssd(slotId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "2447" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2468", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function closeUnfinishedUssd(slotId: number): Promise;", - "mainBuggyLine": "2468" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2490", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setVoNRState(slotId: number, state: VoNRState, callback: AsyncCallback): void;", - "mainBuggyLine": "2490" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2512", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setVoNRState(slotId: number, state: VoNRState): Promise;", - "mainBuggyLine": "2512" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2533", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getVoNRState(slotId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "2533" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2554", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getVoNRState(slotId: number): Promise;", - "mainBuggyLine": "2554" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2578", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function canSetCallTransferTime(slotId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "2578" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2602", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function canSetCallTransferTime(slotId: number): Promise;", - "mainBuggyLine": "2602" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2621", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function inputDialerSpecialCode(inputCode: string, callback: AsyncCallback): void;", - "mainBuggyLine": "2621" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2640", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function inputDialerSpecialCode(inputCode: string): Promise;", - "mainBuggyLine": "2640" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2659", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function removeMissedIncomingCallNotification(callback: AsyncCallback): void;", - "mainBuggyLine": "2659" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2676", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function removeMissedIncomingCallNotification(): Promise;", - "mainBuggyLine": "2676" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2697", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function sendCallUiEvent(callId: number, eventName: string): Promise;", - "mainBuggyLine": "2697" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2707", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum ImsCallMode", - "mainBuggyLine": "2707" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2715", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_MODE_AUDIO_ONLY = 0", - "mainBuggyLine": "2715" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2724", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_MODE_SEND_ONLY", - "mainBuggyLine": "2724" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2733", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_MODE_RECEIVE_ONLY", - "mainBuggyLine": "2733" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2742", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_MODE_SEND_RECEIVE", - "mainBuggyLine": "2742" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2751", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_MODE_VIDEO_PAUSED", - "mainBuggyLine": "2751" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2762", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum VoNRState", - "mainBuggyLine": "2762" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2770", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VONR_STATE_OFF = 0", - "mainBuggyLine": "2770" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2779", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VONR_STATE_ON = 1", - "mainBuggyLine": "2779" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2790", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum AudioDeviceType", - "mainBuggyLine": "2790" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2798", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_EARPIECE", - "mainBuggyLine": "2798" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2807", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_SPEAKER", - "mainBuggyLine": "2807" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2816", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_WIRED_HEADSET", - "mainBuggyLine": "2816" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2825", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_BLUETOOTH_SCO", - "mainBuggyLine": "2825" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2834", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_DISTRIBUTED_AUTOMOTIVE", - "mainBuggyLine": "2834" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2845", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface AudioDevice", - "mainBuggyLine": "2845" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2854", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deviceType: AudioDeviceType;", - "mainBuggyLine": "2854" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2864", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "address?: string;", - "mainBuggyLine": "2864" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2874", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deviceName?: string;", - "mainBuggyLine": "2874" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2885", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface AudioDeviceCallbackInfo", - "mainBuggyLine": "2885" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2894", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "audioDeviceList: Array;", - "mainBuggyLine": "2894" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2904", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "currentAudioDevice: AudioDevice;", - "mainBuggyLine": "2904" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2914", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isMuted: boolean;", - "mainBuggyLine": "2914" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2925", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum CallRestrictionType", - "mainBuggyLine": "2925" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2933", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RESTRICTION_TYPE_ALL_INCOMING = 0", - "mainBuggyLine": "2933" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2942", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RESTRICTION_TYPE_ALL_OUTGOING", - "mainBuggyLine": "2942" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2951", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RESTRICTION_TYPE_INTERNATIONAL", - "mainBuggyLine": "2951" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2960", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RESTRICTION_TYPE_INTERNATIONAL_EXCLUDING_HOME", - "mainBuggyLine": "2960" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2969", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RESTRICTION_TYPE_ROAMING_INCOMING", - "mainBuggyLine": "2969" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2978", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RESTRICTION_TYPE_ALL_CALLS", - "mainBuggyLine": "2978" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2987", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RESTRICTION_TYPE_OUTGOING_SERVICES", - "mainBuggyLine": "2987" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "2996", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RESTRICTION_TYPE_INCOMING_SERVICES", - "mainBuggyLine": "2996" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3007", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface CallTransferInfo", - "mainBuggyLine": "3007" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3016", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "transferNum: string;", - "mainBuggyLine": "3016" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3026", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type: CallTransferType;", - "mainBuggyLine": "3026" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3036", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "settingType: CallTransferSettingType;", - "mainBuggyLine": "3036" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3046", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startHour?: number;", - "mainBuggyLine": "3046" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3056", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startMinute?: number;", - "mainBuggyLine": "3056" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3066", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "endHour?: number;", - "mainBuggyLine": "3066" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3076", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "endMinute?: number;", - "mainBuggyLine": "3076" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3087", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum CallTransferType", - "mainBuggyLine": "3087" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3095", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TRANSFER_TYPE_UNCONDITIONAL = 0", - "mainBuggyLine": "3095" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3104", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TRANSFER_TYPE_BUSY", - "mainBuggyLine": "3104" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3113", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TRANSFER_TYPE_NO_REPLY", - "mainBuggyLine": "3113" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3122", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TRANSFER_TYPE_NOT_REACHABLE", - "mainBuggyLine": "3122" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3133", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum CallTransferSettingType", - "mainBuggyLine": "3133" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3141", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_TRANSFER_DISABLE = 0", - "mainBuggyLine": "3141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3150", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_TRANSFER_ENABLE = 1", - "mainBuggyLine": "3150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3159", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_TRANSFER_REGISTRATION = 3", - "mainBuggyLine": "3159" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3168", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_TRANSFER_ERASURE = 4", - "mainBuggyLine": "3168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3179", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface CallAttributeOptions", - "mainBuggyLine": "3179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3188", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "accountNumber: string;", - "mainBuggyLine": "3188" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3198", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "speakerphoneOn: boolean;", - "mainBuggyLine": "3198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3208", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "accountId: number;", - "mainBuggyLine": "3208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3218", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "videoState: VideoStateType;", - "mainBuggyLine": "3218" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3228", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startTime: number;", - "mainBuggyLine": "3228" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3238", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isEcc: boolean;", - "mainBuggyLine": "3238" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3248", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "callType: CallType;", - "mainBuggyLine": "3248" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3258", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "callId: number;", - "mainBuggyLine": "3258" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3268", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "callState: DetailedCallState;", - "mainBuggyLine": "3268" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3278", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "conferenceState: ConferenceState;", - "mainBuggyLine": "3278" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3288", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "voipCallAttribute?: VoipCallAttribute;", - "mainBuggyLine": "3288" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3298", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "crsType: number;", - "mainBuggyLine": "3298" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3308", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "originalCallType: number;", - "mainBuggyLine": "3308" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3318", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "numberLocation?: string;", - "mainBuggyLine": "3318" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3328", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "numberMarkInfo?: NumberMarkInfo;", - "mainBuggyLine": "3328" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3339", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface VoipCallAttribute", - "mainBuggyLine": "3339" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3348", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "voipCallId: string;", - "mainBuggyLine": "3348" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3358", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "userName: string;", - "mainBuggyLine": "3358" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3368", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "userProfile: image.PixelMap;", - "mainBuggyLine": "3368" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3378", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "extensionId: string;", - "mainBuggyLine": "3378" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3388", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "abilityName: string;", - "mainBuggyLine": "3388" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3398", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "voipBundleName: string;", - "mainBuggyLine": "3398" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3408", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "showBannerForIncomingCall?: boolean;", - "mainBuggyLine": "3408" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3419", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum ConferenceState", - "mainBuggyLine": "3419" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3427", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TEL_CONFERENCE_IDLE = 0", - "mainBuggyLine": "3427" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3436", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TEL_CONFERENCE_ACTIVE", - "mainBuggyLine": "3436" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3445", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TEL_CONFERENCE_DISCONNECTING", - "mainBuggyLine": "3445" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3454", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TEL_CONFERENCE_DISCONNECTED", - "mainBuggyLine": "3454" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3465", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum CallType", - "mainBuggyLine": "3465" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3473", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_CS = 0", - "mainBuggyLine": "3473" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3482", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_IMS = 1", - "mainBuggyLine": "3482" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3491", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_OTT = 2", - "mainBuggyLine": "3491" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3500", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_ERR_CALL = 3", - "mainBuggyLine": "3500" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3509", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_VOIP = 4", - "mainBuggyLine": "3509" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3520", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum VideoStateType", - "mainBuggyLine": "3520" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3528", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_VOICE = 0", - "mainBuggyLine": "3528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3538", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_VIDEO", - "mainBuggyLine": "3538" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3546", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_VIDEO_SEND_ONLY = 1", - "mainBuggyLine": "3546" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3554", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_VIDEO_RECEIVE_ONLY", - "mainBuggyLine": "3554" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3562", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_VIDEO_BIDIRECTIONAL", - "mainBuggyLine": "3562" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3573", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum VideoRequestResultType", - "mainBuggyLine": "3573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3581", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_REQUEST_SUCCESS = 0", - "mainBuggyLine": "3581" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3589", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_REQUEST_FAILURE", - "mainBuggyLine": "3589" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3597", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_REQUEST_INVALID", - "mainBuggyLine": "3597" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3605", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_REQUEST_TIMED_OUT", - "mainBuggyLine": "3605" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3613", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_REQUEST_REJECTED_BY_REMOTE", - "mainBuggyLine": "3613" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3621", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_REQUEST_UPGRADE_CANCELED", - "mainBuggyLine": "3621" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3629", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_DOWNGRADE_RTP_OR_RTCP_TIMEOUT = 100", - "mainBuggyLine": "3629" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3637", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_DOWNGRADE_RTP_AND_RTCP_TIMEOUT", - "mainBuggyLine": "3637" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3648", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum DeviceDirection", - "mainBuggyLine": "3648" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3656", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_DIRECTION_0 = 0", - "mainBuggyLine": "3656" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3664", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_DIRECTION_90 = 90", - "mainBuggyLine": "3664" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3672", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_DIRECTION_180 = 180", - "mainBuggyLine": "3672" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3680", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEVICE_DIRECTION_270 = 270", - "mainBuggyLine": "3680" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3691", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum CallSessionEventId", - "mainBuggyLine": "3691" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3699", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EVENT_CONTROL_CAMERA_FAILURE = 0", - "mainBuggyLine": "3699" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3707", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EVENT_CONTROL_CAMERA_READY", - "mainBuggyLine": "3707" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3715", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EVENT_DISPLAY_SURFACE_RELEASED = 100", - "mainBuggyLine": "3715" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3723", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EVENT_PREVIEW_SURFACE_RELEASED", - "mainBuggyLine": "3723" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3734", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum DetailedCallState", - "mainBuggyLine": "3734" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3742", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_STATUS_ACTIVE = 0", - "mainBuggyLine": "3742" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3751", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_STATUS_HOLDING", - "mainBuggyLine": "3751" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3760", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_STATUS_DIALING", - "mainBuggyLine": "3760" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3769", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_STATUS_ALERTING", - "mainBuggyLine": "3769" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3778", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_STATUS_INCOMING", - "mainBuggyLine": "3778" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3787", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_STATUS_WAITING", - "mainBuggyLine": "3787" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3796", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_STATUS_DISCONNECTED", - "mainBuggyLine": "3796" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3805", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_STATUS_DISCONNECTING", - "mainBuggyLine": "3805" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3814", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_STATUS_IDLE", - "mainBuggyLine": "3814" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3825", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface CallRestrictionInfo", - "mainBuggyLine": "3825" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3834", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type: CallRestrictionType;", - "mainBuggyLine": "3834" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3844", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "password: string;", - "mainBuggyLine": "3844" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3854", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "mode: CallRestrictionMode;", - "mainBuggyLine": "3854" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3865", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum CallRestrictionMode", - "mainBuggyLine": "3865" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3873", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RESTRICTION_MODE_DEACTIVATION = 0", - "mainBuggyLine": "3873" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3882", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RESTRICTION_MODE_ACTIVATION", - "mainBuggyLine": "3882" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3893", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface CallEventOptions", - "mainBuggyLine": "3893" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3902", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "eventId: CallAbilityEventId,", - "mainBuggyLine": "3902" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3913", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum CallAbilityEventId", - "mainBuggyLine": "3913" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3921", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EVENT_DIAL_NO_CARRIER = 1", - "mainBuggyLine": "3921" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3930", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EVENT_INVALID_FDN_NUMBER", - "mainBuggyLine": "3930" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3939", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EVENT_HOLD_CALL_FAILED", - "mainBuggyLine": "3939" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3948", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EVENT_SWAP_CALL_FAILED", - "mainBuggyLine": "3948" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3957", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EVENT_COMBINE_CALL_FAILED", - "mainBuggyLine": "3957" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3966", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EVENT_SPLIT_CALL_FAILED", - "mainBuggyLine": "3966" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3975", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EVENT_SHOW_FULL_SCREEN", - "mainBuggyLine": "3975" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3984", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EVENT_SHOW_FLOAT_WINDOW", - "mainBuggyLine": "3984" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "3994", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum CallState", - "mainBuggyLine": "3994" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4001", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_STATE_UNKNOWN = -1", - "mainBuggyLine": "4001" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4009", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_STATE_IDLE = 0", - "mainBuggyLine": "4009" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4017", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_STATE_RINGING = 1", - "mainBuggyLine": "4017" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4026", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_STATE_OFFHOOK = 2", - "mainBuggyLine": "4026" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4034", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_STATE_ANSWERED = 3", - "mainBuggyLine": "4034" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4044", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface DialOptions", - "mainBuggyLine": "4044" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4053", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "extras?: boolean;", - "mainBuggyLine": "4053" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4064", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "accountId?: number;", - "mainBuggyLine": "4064" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4074", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "videoState?: VideoStateType;", - "mainBuggyLine": "4074" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4084", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dialScene?: DialScene;", - "mainBuggyLine": "4084" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4094", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dialType?: DialType;", - "mainBuggyLine": "4094" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4105", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface DialCallOptions", - "mainBuggyLine": "4105" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4115", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "accountId?: number;", - "mainBuggyLine": "4115" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4124", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "videoState?: VideoStateType;", - "mainBuggyLine": "4124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4133", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dialScene?: DialScene;", - "mainBuggyLine": "4133" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4142", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dialType?: DialType;", - "mainBuggyLine": "4142" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4153", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum DialScene", - "mainBuggyLine": "4153" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4161", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_NORMAL = 0", - "mainBuggyLine": "4161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4170", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_PRIVILEGED = 1", - "mainBuggyLine": "4170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4179", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_EMERGENCY = 2", - "mainBuggyLine": "4179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4190", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum DialType", - "mainBuggyLine": "4190" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4198", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DIAL_CARRIER_TYPE = 0", - "mainBuggyLine": "4198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4207", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DIAL_VOICE_MAIL_TYPE = 1", - "mainBuggyLine": "4207" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4216", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DIAL_OTT_TYPE = 2", - "mainBuggyLine": "4216" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4227", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface RejectMessageOptions", - "mainBuggyLine": "4227" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4236", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "messageContent: string;", - "mainBuggyLine": "4236" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4247", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface CallTransferResult", - "mainBuggyLine": "4247" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4256", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "status: TransferStatus;", - "mainBuggyLine": "4256" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4266", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "number: string;", - "mainBuggyLine": "4266" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4276", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startHour: number;", - "mainBuggyLine": "4276" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4286", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startMinute: number;", - "mainBuggyLine": "4286" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4296", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "endHour: number;", - "mainBuggyLine": "4296" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4306", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "endMinute: number;", - "mainBuggyLine": "4306" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4317", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum CallWaitingStatus", - "mainBuggyLine": "4317" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4325", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_WAITING_DISABLE = 0", - "mainBuggyLine": "4325" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4334", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_WAITING_ENABLE = 1", - "mainBuggyLine": "4334" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4345", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum RestrictionStatus", - "mainBuggyLine": "4345" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4353", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RESTRICTION_DISABLE = 0", - "mainBuggyLine": "4353" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4362", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RESTRICTION_ENABLE = 1", - "mainBuggyLine": "4362" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4373", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum TransferStatus", - "mainBuggyLine": "4373" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4381", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TRANSFER_DISABLE = 0", - "mainBuggyLine": "4381" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4390", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TRANSFER_ENABLE = 1", - "mainBuggyLine": "4390" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4400", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface EmergencyNumberOptions", - "mainBuggyLine": "4400" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4409", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "slotId?: number;", - "mainBuggyLine": "4409" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4419", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface NumberFormatOptions", - "mainBuggyLine": "4419" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4427", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "countryCode?: string;", - "mainBuggyLine": "4427" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4438", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface MmiCodeResults", - "mainBuggyLine": "4438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4447", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "result: MmiCodeResult;", - "mainBuggyLine": "4447" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4457", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "message: string;", - "mainBuggyLine": "4457" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4468", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum MmiCodeResult", - "mainBuggyLine": "4468" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4476", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MMI_CODE_SUCCESS = 0", - "mainBuggyLine": "4476" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4485", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MMI_CODE_FAILED = 1", - "mainBuggyLine": "4485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4496", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum DisconnectedReason", - "mainBuggyLine": "4496" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4504", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "UNASSIGNED_NUMBER = 1", - "mainBuggyLine": "4504" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4513", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NO_ROUTE_TO_DESTINATION = 3", - "mainBuggyLine": "4513" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4522", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CHANNEL_UNACCEPTABLE = 6", - "mainBuggyLine": "4522" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4531", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OPERATOR_DETERMINED_BARRING = 8", - "mainBuggyLine": "4531" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4540", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_COMPLETED_ELSEWHERE = 13", - "mainBuggyLine": "4540" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4549", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NORMAL_CALL_CLEARING = 16", - "mainBuggyLine": "4549" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4558", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "USER_BUSY = 17", - "mainBuggyLine": "4558" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4567", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NO_USER_RESPONDING = 18", - "mainBuggyLine": "4567" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4576", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "USER_ALERTING_NO_ANSWER = 19", - "mainBuggyLine": "4576" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4585", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_REJECTED = 21", - "mainBuggyLine": "4585" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4594", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NUMBER_CHANGED = 22", - "mainBuggyLine": "4594" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4603", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_REJECTED_DUE_TO_FEATURE_AT_THE_DESTINATION = 24", - "mainBuggyLine": "4603" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4612", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FAILED_PRE_EMPTION = 25", - "mainBuggyLine": "4612" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4621", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NON_SELECTED_USER_CLEARING = 26", - "mainBuggyLine": "4621" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4630", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DESTINATION_OUT_OF_ORDER = 27", - "mainBuggyLine": "4630" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4639", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INVALID_NUMBER_FORMAT = 28", - "mainBuggyLine": "4639" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4648", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FACILITY_REJECTED = 29", - "mainBuggyLine": "4648" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4657", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RESPONSE_TO_STATUS_ENQUIRY = 30", - "mainBuggyLine": "4657" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4666", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NORMAL_UNSPECIFIED = 31", - "mainBuggyLine": "4666" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4675", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NO_CIRCUIT_CHANNEL_AVAILABLE = 34", - "mainBuggyLine": "4675" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4684", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NETWORK_OUT_OF_ORDER = 38", - "mainBuggyLine": "4684" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4693", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TEMPORARY_FAILURE = 41", - "mainBuggyLine": "4693" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4702", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SWITCHING_EQUIPMENT_CONGESTION = 42", - "mainBuggyLine": "4702" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4711", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ACCESS_INFORMATION_DISCARDED = 43", - "mainBuggyLine": "4711" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4720", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "REQUEST_CIRCUIT_CHANNEL_NOT_AVAILABLE = 44", - "mainBuggyLine": "4720" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4729", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RESOURCES_UNAVAILABLE_UNSPECIFIED = 47", - "mainBuggyLine": "4729" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4738", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "QUALITY_OF_SERVICE_UNAVAILABLE = 49", - "mainBuggyLine": "4738" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4747", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "REQUESTED_FACILITY_NOT_SUBSCRIBED = 50", - "mainBuggyLine": "4747" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4756", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INCOMING_CALLS_BARRED_WITHIN_THE_CUG = 55", - "mainBuggyLine": "4756" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4765", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "BEARER_CAPABILITY_NOT_AUTHORIZED = 57", - "mainBuggyLine": "4765" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4774", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "BEARER_CAPABILITY_NOT_PRESENTLY_AVAILABLE = 58", - "mainBuggyLine": "4774" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4783", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SERVICE_OR_OPTION_NOT_AVAILABLE_UNSPECIFIED = 63", - "mainBuggyLine": "4783" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4792", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "BEARER_SERVICE_NOT_IMPLEMENTED = 65", - "mainBuggyLine": "4792" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4801", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ACM_EQUALTO_OR_GREATER_THAN_THE_MAXIMUM_VALUE = 68", - "mainBuggyLine": "4801" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4810", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "REQUESTED_FACILITY_NOT_IMPLEMENTED = 69", - "mainBuggyLine": "4810" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4819", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ONLY_RESTRICTED_DIGITAL_INFO_BEARER_CAPABILITY_IS_AVAILABLE = 70", - "mainBuggyLine": "4819" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4828", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SERVICE_OR_OPTION_NOT_IMPLEMENTED_UNSPECIFIED = 79", - "mainBuggyLine": "4828" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4837", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INVALID_TRANSACTION_IDENTIFIER_VALUE = 81", - "mainBuggyLine": "4837" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4846", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "USER_NOT_MEMBER_OF_CUG = 87", - "mainBuggyLine": "4846" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4855", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INCOMPATIBLE_DESTINATION = 88", - "mainBuggyLine": "4855" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4864", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INVALID_TRANSIT_NETWORK_SELECTION = 91", - "mainBuggyLine": "4864" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4873", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SEMANTICALLY_INCORRECT_MESSAGE = 95", - "mainBuggyLine": "4873" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4882", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INVALID_MANDATORY_INFORMATION = 96", - "mainBuggyLine": "4882" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4891", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MESSAGE_TYPE_NON_EXISTENT_OR_NOT_IMPLEMENTED = 97", - "mainBuggyLine": "4891" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4900", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MESSAGE_TYPE_NOT_COMPATIBLE_WITH_PROTOCOL_STATE = 98", - "mainBuggyLine": "4900" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4909", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INFORMATION_ELEMENT_NON_EXISTENT_OR_NOT_IMPLEMENTED = 99", - "mainBuggyLine": "4909" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4918", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CONDITIONAL_IE_ERROR = 100", - "mainBuggyLine": "4918" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4927", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MESSAGE_NOT_COMPATIBLE_WITH_PROTOCOL_STATE = 101", - "mainBuggyLine": "4927" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4936", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RECOVERY_ON_TIMER_EXPIRED = 102", - "mainBuggyLine": "4936" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4945", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PROTOCOL_ERROR_UNSPECIFIED = 111", - "mainBuggyLine": "4945" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4954", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INTERWORKING_UNSPECIFIED = 127", - "mainBuggyLine": "4954" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4963", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_BARRED = 240", - "mainBuggyLine": "4963" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4972", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FDN_BLOCKED = 241", - "mainBuggyLine": "4972" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4981", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "IMSI_UNKNOWN_IN_VLR = 242", - "mainBuggyLine": "4981" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4990", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "IMEI_NOT_ACCEPTED = 243", - "mainBuggyLine": "4990" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "4999", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DIAL_MODIFIED_TO_USSD = 244", - "mainBuggyLine": "4999" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5008", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DIAL_MODIFIED_TO_SS = 245", - "mainBuggyLine": "5008" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5017", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DIAL_MODIFIED_TO_DIAL = 246", - "mainBuggyLine": "5017" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5026", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RADIO_OFF = 247", - "mainBuggyLine": "5026" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5035", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OUT_OF_SERVICE = 248", - "mainBuggyLine": "5035" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5044", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NO_VALID_SIM = 249", - "mainBuggyLine": "5044" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5053", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RADIO_INTERNAL_ERROR = 250", - "mainBuggyLine": "5053" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5062", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NETWORK_RESP_TIMEOUT = 251", - "mainBuggyLine": "5062" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5071", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NETWORK_REJECT = 252", - "mainBuggyLine": "5071" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5080", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RADIO_ACCESS_FAILURE = 253", - "mainBuggyLine": "5080" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5089", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RADIO_LINK_FAILURE = 254", - "mainBuggyLine": "5089" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5098", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RADIO_LINK_LOST = 255", - "mainBuggyLine": "5098" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5107", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RADIO_UPLINK_FAILURE = 256", - "mainBuggyLine": "5107" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5116", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RADIO_SETUP_FAILURE = 257", - "mainBuggyLine": "5116" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5125", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RADIO_RELEASE_NORMAL = 258", - "mainBuggyLine": "5125" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5134", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RADIO_RELEASE_ABNORMAL = 259", - "mainBuggyLine": "5134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5143", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ACCESS_CLASS_BLOCKED = 260", - "mainBuggyLine": "5143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5152", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NETWORK_DETACH = 261", - "mainBuggyLine": "5152" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5161", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INVALID_PARAMETER = 1025", - "mainBuggyLine": "5161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5170", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SIM_NOT_EXIT = 1026", - "mainBuggyLine": "5170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5179", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SIM_PIN_NEED = 1027", - "mainBuggyLine": "5179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5188", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CALL_NOT_ALLOW = 1029", - "mainBuggyLine": "5188" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5197", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SIM_INVALID = 1045", - "mainBuggyLine": "5197" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5206", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "UNKNOWN = 1279", - "mainBuggyLine": "5206" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5217", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface DisconnectedDetails", - "mainBuggyLine": "5217" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5226", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "reason: DisconnectedReason;", - "mainBuggyLine": "5226" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5235", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "message: string;", - "mainBuggyLine": "5235" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5246", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface ImsCallModeInfo", - "mainBuggyLine": "5246" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5255", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "callId: number;", - "mainBuggyLine": "5255" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5264", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "result: VideoRequestResultType;", - "mainBuggyLine": "5264" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5273", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isRequestInfo: boolean;", - "mainBuggyLine": "5273" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5282", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "imsCallMode: ImsCallMode;", - "mainBuggyLine": "5282" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5293", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface CallSessionEvent", - "mainBuggyLine": "5293" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5302", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "callId: number;", - "mainBuggyLine": "5302" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5311", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "eventId: CallSessionEventId;", - "mainBuggyLine": "5311" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5322", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface PeerDimensionsDetail", - "mainBuggyLine": "5322" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5331", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "callId: number;", - "mainBuggyLine": "5331" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5340", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "width: number;", - "mainBuggyLine": "5340" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5349", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "height: number;", - "mainBuggyLine": "5349" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5360", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface CameraCapabilities", - "mainBuggyLine": "5360" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5369", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "callId: number;", - "mainBuggyLine": "5369" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5378", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "width: number;", - "mainBuggyLine": "5378" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5387", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "height: number;", - "mainBuggyLine": "5387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5398", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export interface NumberMarkInfo", - "mainBuggyLine": "5398" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5407", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "markType: MarkType;", - "mainBuggyLine": "5407" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5417", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "markContent?: string;", - "mainBuggyLine": "5417" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5427", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "markCount?: number;", - "mainBuggyLine": "5427" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5437", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "markSource?: string;", - "mainBuggyLine": "5437" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5447", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isCloud?: boolean;", - "mainBuggyLine": "5447" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5458", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum MarkType", - "mainBuggyLine": "5458" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5466", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MARK_TYPE_NONE = 0", - "mainBuggyLine": "5466" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5475", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MARK_TYPE_CRANK = 1", - "mainBuggyLine": "5475" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5484", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MARK_TYPE_FRAUD = 2", - "mainBuggyLine": "5484" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5493", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MARK_TYPE_EXPRESS = 3", - "mainBuggyLine": "5493" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5502", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MARK_TYPE_PROMOTE_SALES = 4", - "mainBuggyLine": "5502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5511", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MARK_TYPE_HOUSE_AGENT = 5", - "mainBuggyLine": "5511" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5520", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MARK_TYPE_INSURANCE = 6", - "mainBuggyLine": "5520" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5529", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MARK_TYPE_TAXI = 7", - "mainBuggyLine": "5529" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5538", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MARK_TYPE_CUSTOM = 8", - "mainBuggyLine": "5538" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5547", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MARK_TYPE_OTHERS = 9", - "mainBuggyLine": "5547" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts", - "codeContextStaerLine": "5556", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MARK_TYPE_YELLOW_PAGE = 10", - "mainBuggyLine": "5556" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.observer.d.ts", - "codeContextStaerLine": "43", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type NetworkState = radio.NetworkState;", - "mainBuggyLine": "43" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.observer.d.ts", - "codeContextStaerLine": "52", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type SignalInformation = radio.SignalInformation;", - "mainBuggyLine": "52" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.observer.d.ts", - "codeContextStaerLine": "62", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type CellInformation = radio.CellInformation;", - "mainBuggyLine": "62" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.observer.d.ts", - "codeContextStaerLine": "71", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type DataConnectState = data.DataConnectState;", - "mainBuggyLine": "71" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.observer.d.ts", - "codeContextStaerLine": "80", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type RatType = radio.RadioTechnology;", - "mainBuggyLine": "80" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.observer.d.ts", - "codeContextStaerLine": "89", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type DataFlowType = data.DataFlowType;", - "mainBuggyLine": "89" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.observer.d.ts", - "codeContextStaerLine": "98", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type CallState = call.CallState;", - "mainBuggyLine": "98" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.observer.d.ts", - "codeContextStaerLine": "107", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type CardType = sim.CardType;", - "mainBuggyLine": "107" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.observer.d.ts", - "codeContextStaerLine": "116", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type SimState = sim.SimState;", - "mainBuggyLine": "116" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.radio.d.ts", - "codeContextStaerLine": "1925", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "psRadioTech: RadioTechnology;", - "mainBuggyLine": "1925" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.radio.d.ts", - "codeContextStaerLine": "1933", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "csRadioTech: RadioTechnology;", - "mainBuggyLine": "1933" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.UiTest.d.ts", - "codeContextStaerLine": "1257", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "actived?: boolean;", - "mainBuggyLine": "1257" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.UiTest.d.ts", - "codeContextStaerLine": "4276", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isActived(): Promise;", - "mainBuggyLine": "4276" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.uri.d.ts", - "codeContextStaerLine": "150", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "equals(other: URI): boolean;", - "mainBuggyLine": "150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.uri.d.ts", - "codeContextStaerLine": "429", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "scheme: string;", - "mainBuggyLine": "429" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.uri.d.ts", - "codeContextStaerLine": "460", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "userInfo: string;", - "mainBuggyLine": "460" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.uri.d.ts", - "codeContextStaerLine": "483", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "host: string;", - "mainBuggyLine": "483" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.uri.d.ts", - "codeContextStaerLine": "506", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "port: string;", - "mainBuggyLine": "506" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.uri.d.ts", - "codeContextStaerLine": "537", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "path: string;", - "mainBuggyLine": "537" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.uri.d.ts", - "codeContextStaerLine": "568", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "query: string;", - "mainBuggyLine": "568" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.uri.d.ts", - "codeContextStaerLine": "599", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fragment: string;", - "mainBuggyLine": "599" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.uri.d.ts", - "codeContextStaerLine": "630", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "authority: string;", - "mainBuggyLine": "630" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class URLSearchParams", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "70", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(init?: string[][] | Record | string | URLSearchParams);", - "mainBuggyLine": "70" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "82", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "append(name: string, value: string): void;", - "mainBuggyLine": "82" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "93", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "delete(name: string): void;", - "mainBuggyLine": "93" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "105", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAll(name: string): string[];", - "mainBuggyLine": "105" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "117", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "entries(): IterableIterator<[string, string]>;", - "mainBuggyLine": "117" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "129", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "forEach(callbackFn: (value: string, key: string, searchParams: URLSearchParams) => void, thisArg?: Object): void;", - "mainBuggyLine": "129" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "141", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "get(name: string): string | null;", - "mainBuggyLine": "141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "153", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "has(name: string): boolean;", - "mainBuggyLine": "153" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "168", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "set(name: string, value: string): void;", - "mainBuggyLine": "168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "178", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sort(): void;", - "mainBuggyLine": "178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "189", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "keys(): IterableIterator;", - "mainBuggyLine": "189" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "200", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "values(): IterableIterator;", - "mainBuggyLine": "200" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "212", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "[Symbol.iterator](): IterableIterator<[string, string]>;", - "mainBuggyLine": "212" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "212", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_01", - "description": "API check error of [wrong value]: The [useinstead] tag value is incorrect. Please check the usage method.", - "language": "ts", - "mainBuggyCode": "[Symbol.iterator](): IterableIterator<[string, string]>;", - "mainBuggyLine": "212" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "223", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "toString(): string;", - "mainBuggyLine": "223" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "789", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(url: string, base?: string | URL);", - "mainBuggyLine": "789" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "937", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "hash: string;", - "mainBuggyLine": "937" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "960", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "host: string;", - "mainBuggyLine": "960" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "983", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "hostname: string;", - "mainBuggyLine": "983" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "1006", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "href: string;", - "mainBuggyLine": "1006" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "1029", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly origin: string;", - "mainBuggyLine": "1029" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "1052", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "password: string;", - "mainBuggyLine": "1052" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "1075", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "pathname: string;", - "mainBuggyLine": "1075" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "1098", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "port: string;", - "mainBuggyLine": "1098" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "1121", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "protocol: string;", - "mainBuggyLine": "1121" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "1144", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "search: string;", - "mainBuggyLine": "1144" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "1156", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly searchParams: URLSearchParams;", - "mainBuggyLine": "1156" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "1156", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly searchParams: URLSearchParams;", - "mainBuggyLine": "1156" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "1185", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly params: URLParams;", - "mainBuggyLine": "1185" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts", - "codeContextStaerLine": "1208", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "username: string;", - "mainBuggyLine": "1208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "289", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "address: number;", - "mainBuggyLine": "289" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "298", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "attributes: number;", - "mainBuggyLine": "298" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "307", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "interval: number;", - "mainBuggyLine": "307" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "316", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "maxPacketSize: number;", - "mainBuggyLine": "316" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "325", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "direction: USBRequestDirection;", - "mainBuggyLine": "325" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "334", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "number: number;", - "mainBuggyLine": "334" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "343", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: number;", - "mainBuggyLine": "343" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "352", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "interfaceId: number;", - "mainBuggyLine": "352" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "371", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "id: number;", - "mainBuggyLine": "371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "380", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "protocol: number;", - "mainBuggyLine": "380" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "389", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "clazz: number;", - "mainBuggyLine": "389" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "398", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "subClass: number;", - "mainBuggyLine": "398" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "407", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "alternateSetting: number;", - "mainBuggyLine": "407" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "416", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "416" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "425", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "endpoints: Array;", - "mainBuggyLine": "425" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "444", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "id: number;", - "mainBuggyLine": "444" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "453", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "attributes: number;", - "mainBuggyLine": "453" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "462", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "maxPower: number;", - "mainBuggyLine": "462" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "471", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "471" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "480", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isRemoteWakeup: boolean;", - "mainBuggyLine": "480" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "489", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isSelfPowered: boolean;", - "mainBuggyLine": "489" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "498", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "interfaces: Array;", - "mainBuggyLine": "498" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "517", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "busNum: number;", - "mainBuggyLine": "517" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "526", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "devAddress: number;", - "mainBuggyLine": "526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "535", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serial: string;", - "mainBuggyLine": "535" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "544", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "544" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "553", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "manufacturerName: string;", - "mainBuggyLine": "553" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "562", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "productName: string;", - "mainBuggyLine": "562" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "571", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "version: string;", - "mainBuggyLine": "571" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "580", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "vendorId: number;", - "mainBuggyLine": "580" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "589", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "productId: number;", - "mainBuggyLine": "589" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "598", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "clazz: number;", - "mainBuggyLine": "598" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "607", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "subClass: number;", - "mainBuggyLine": "607" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "616", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "protocol: number;", - "mainBuggyLine": "616" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "625", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "configs: Array;", - "mainBuggyLine": "625" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "644", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "busNum: number;", - "mainBuggyLine": "644" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "653", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "devAddress: number;", - "mainBuggyLine": "653" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "817", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "currentMode: number;", - "mainBuggyLine": "817" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "827", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "currentPowerRole: number;", - "mainBuggyLine": "827" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "837", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "currentDataRole: number;", - "mainBuggyLine": "837" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "858", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "id: number;", - "mainBuggyLine": "858" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "868", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "supportedModes: PortModeType;", - "mainBuggyLine": "868" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "878", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "status: USBPortStatus;", - "mainBuggyLine": "878" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "897", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "request: number;", - "mainBuggyLine": "897" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "906", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "target: USBRequestTargetType;", - "mainBuggyLine": "906" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "915", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "reqType: USBControlRequestType;", - "mainBuggyLine": "915" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "924", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: number;", - "mainBuggyLine": "924" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "933", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "index: number;", - "mainBuggyLine": "933" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts", - "codeContextStaerLine": "942", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "data: Uint8Array;", - "mainBuggyLine": "942" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "488", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "address: number;", - "mainBuggyLine": "488" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "496", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "attributes: number;", - "mainBuggyLine": "496" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "504", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "interval: number;", - "mainBuggyLine": "504" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "512", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "maxPacketSize: number;", - "mainBuggyLine": "512" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "520", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "direction: USBRequestDirection;", - "mainBuggyLine": "520" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "528", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "number: number;", - "mainBuggyLine": "528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "536", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: number;", - "mainBuggyLine": "536" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "544", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "interfaceId: number;", - "mainBuggyLine": "544" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "561", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "id: number;", - "mainBuggyLine": "561" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "569", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "protocol: number;", - "mainBuggyLine": "569" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "577", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "clazz: number;", - "mainBuggyLine": "577" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "585", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "subClass: number;", - "mainBuggyLine": "585" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "593", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "alternateSetting: number;", - "mainBuggyLine": "593" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "601", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "601" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "609", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "endpoints: Array;", - "mainBuggyLine": "609" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "626", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "id: number;", - "mainBuggyLine": "626" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "634", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "attributes: number;", - "mainBuggyLine": "634" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "642", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "maxPower: number;", - "mainBuggyLine": "642" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "650", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "650" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "658", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isRemoteWakeup: boolean;", - "mainBuggyLine": "658" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "666", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isSelfPowered: boolean;", - "mainBuggyLine": "666" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "674", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "interfaces: Array;", - "mainBuggyLine": "674" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "691", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "busNum: number;", - "mainBuggyLine": "691" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "699", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "devAddress: number;", - "mainBuggyLine": "699" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "707", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serial: string;", - "mainBuggyLine": "707" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "715", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "715" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "723", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "manufacturerName: string;", - "mainBuggyLine": "723" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "731", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "productName: string;", - "mainBuggyLine": "731" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "739", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "version: string;", - "mainBuggyLine": "739" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "747", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "vendorId: number;", - "mainBuggyLine": "747" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "755", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "productId: number;", - "mainBuggyLine": "755" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "763", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "clazz: number;", - "mainBuggyLine": "763" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "771", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "subClass: number;", - "mainBuggyLine": "771" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "779", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "protocol: number;", - "mainBuggyLine": "779" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "787", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "configs: Array;", - "mainBuggyLine": "787" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "804", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "busNum: number;", - "mainBuggyLine": "804" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "812", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "devAddress: number;", - "mainBuggyLine": "812" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "960", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "currentMode: number;", - "mainBuggyLine": "960" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "969", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "currentPowerRole: number;", - "mainBuggyLine": "969" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "978", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "currentDataRole: number;", - "mainBuggyLine": "978" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "997", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "id: number;", - "mainBuggyLine": "997" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "1006", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "supportedModes: PortModeType;", - "mainBuggyLine": "1006" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "1015", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "status: USBPortStatus;", - "mainBuggyLine": "1015" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "1032", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "request: number;", - "mainBuggyLine": "1032" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "1040", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "target: USBRequestTargetType;", - "mainBuggyLine": "1040" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "1048", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "reqType: USBControlRequestType;", - "mainBuggyLine": "1048" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "1056", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: number;", - "mainBuggyLine": "1056" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "1064", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "index: number;", - "mainBuggyLine": "1064" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts", - "codeContextStaerLine": "1072", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "data: Uint8Array;", - "mainBuggyLine": "1072" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.userIAM.userAuth.d.ts", - "codeContextStaerLine": "157", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type AuthType = 'ALL' | 'FACE_ONLY';", - "mainBuggyLine": "157" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.userIAM.userAuth.d.ts", - "codeContextStaerLine": "166", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type SecureLevel = 'S1' | 'S2' | 'S3' | 'S4';", - "mainBuggyLine": "166" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.userIAM.userAuth.d.ts", - "codeContextStaerLine": "318", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onResult: (result: number, extraInfo: AuthResult) => void;", - "mainBuggyLine": "318" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.userIAM.userAuth.d.ts", - "codeContextStaerLine": "328", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onAcquireInfo?: (module: number, acquire: number, extraInfo: any) => void;", - "mainBuggyLine": "328" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.userIAM.userAuth.d.ts", - "codeContextStaerLine": "736", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type AuthEventKey = 'result' | 'tip';", - "mainBuggyLine": "736" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.userIAM.userAuth.d.ts", - "codeContextStaerLine": "746", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type EventInfo = AuthResultInfo | TipInfo;", - "mainBuggyLine": "746" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.userIAM.userAuth.d.ts", - "codeContextStaerLine": "869", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "on: (name: AuthEventKey, callback: AuthEvent) => void;", - "mainBuggyLine": "869" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.userIAM.userAuth.d.ts", - "codeContextStaerLine": "880", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "off: (name: AuthEventKey) => void;", - "mainBuggyLine": "880" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.userIAM.userAuth.d.ts", - "codeContextStaerLine": "901", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "start: () => void;", - "mainBuggyLine": "901" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.userIAM.userAuth.d.ts", - "codeContextStaerLine": "914", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "cancel: () => void;", - "mainBuggyLine": "914" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.userIAM.userAuthIcon.d.ets", - "codeContextStaerLine": "29", - "defectLevel": 2, - "defectType": "API_DOC_STRUCT_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [struct] tag is missing.", - "language": "ts", - "mainBuggyCode": " export default struct UserAuthIcon", - "mainBuggyLine": "29" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.userIAM.userAuthIcon.d.ets", - "codeContextStaerLine": "78", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "onAuthResult: (result: userAuth.UserAuthResult) => void;", - "mainBuggyLine": "78" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.userIAM.userAuthIcon.d.ets", - "codeContextStaerLine": "78", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [1] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "onAuthResult: (result: userAuth.UserAuthResult) => void;", - "mainBuggyLine": "78" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.userIAM.userAuthIcon.d.ets", - "codeContextStaerLine": "78", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onAuthResult: (result: userAuth.UserAuthResult) => void;", - "mainBuggyLine": "78" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.userIAM.userAuthIcon.d.ets", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onIconClick?: () => void;", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.ArrayList.d.ts", - "codeContextStaerLine": "66", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length: number;", - "mainBuggyLine": "66" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "75", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function printf(format: string, ...args: Object[]): string;", - "mainBuggyLine": "75" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "132", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function format(format: string, ...args: Object[]): string;", - "mainBuggyLine": "132" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "144", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getErrorString(errno: number): string;", - "mainBuggyLine": "144" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "169", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function errnoToString(errno: number): string;", - "mainBuggyLine": "169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "196", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function callbackWrapper(original: Function): (err: Object, value: Object) => void;", - "mainBuggyLine": "196" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "223", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function promisify(original: (err: Object, value: Object) => void): Function;", - "mainBuggyLine": "223" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "236", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function promiseWrapper(original: (err: Object, value: Object) => void): Object;", - "mainBuggyLine": "236" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "257", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function generateRandomUUID(entropyCache?: boolean): string;", - "mainBuggyLine": "257" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "278", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function generateRandomBinaryUUID(entropyCache?: boolean): Uint8Array;", - "mainBuggyLine": "278" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "299", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function parseUUID(uuid: string): Uint8Array;", - "mainBuggyLine": "299" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "405", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "405" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "420", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly encoding: string;", - "mainBuggyLine": "420" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "420", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly encoding: string;", - "mainBuggyLine": "420" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "435", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly fatal: boolean;", - "mainBuggyLine": "435" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "435", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly fatal: boolean;", - "mainBuggyLine": "435" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "450", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly ignoreBOM = false;", - "mainBuggyLine": "450" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "450", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly ignoreBOM = false;", - "mainBuggyLine": "450" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "462", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(encoding?: string, options?: { fatal?: boolean; ignoreBOM?: boolean });", - "mainBuggyLine": "462" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "510", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "decode(input: Uint8Array, options?: { stream?: false }): string;", - "mainBuggyLine": "510" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "628", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly encoding = 'utf-8';", - "mainBuggyLine": "628" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "628", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly encoding = 'utf-8';", - "mainBuggyLine": "628" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "705", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "encode(input?: string): Uint8Array;", - "mainBuggyLine": "705" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "752", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "encodeInto(input: string, dest: Uint8Array): { read: number; written: number };", - "mainBuggyLine": "752" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "815", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class RationalNumber", - "mainBuggyLine": "815" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "826", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(numerator: number, denominator: number);", - "mainBuggyLine": "826" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "841", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "841" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "868", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static parseRationalNumber(numerator: number, denominator: number): RationalNumber;", - "mainBuggyLine": "868" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "889", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static createRationalFromString(rationalString: string): RationalNumber;", - "mainBuggyLine": "889" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "901", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "compareTo(another: RationalNumber): number;", - "mainBuggyLine": "901" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "926", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "compare(another: RationalNumber): number;", - "mainBuggyLine": "926" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "945", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "equals(obj: Object): boolean;", - "mainBuggyLine": "945" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "962", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "valueOf(): number;", - "mainBuggyLine": "962" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "975", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getCommonDivisor(number1: number, number2: number): number;", - "mainBuggyLine": "975" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1002", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getCommonFactor(number1: number, number2: number): number;", - "mainBuggyLine": "1002" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1019", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getDenominator(): number;", - "mainBuggyLine": "1019" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1036", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getNumerator(): number;", - "mainBuggyLine": "1036" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1053", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isFinite(): boolean;", - "mainBuggyLine": "1053" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1070", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isNaN(): boolean;", - "mainBuggyLine": "1070" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1087", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isZero(): boolean;", - "mainBuggyLine": "1087" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1104", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "toString(): string;", - "mainBuggyLine": "1104" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1115", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class LruBuffer", - "mainBuggyLine": "1115" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1125", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(capacity?: number);", - "mainBuggyLine": "1125" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1136", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "updateCapacity(newCapacity: number): void;", - "mainBuggyLine": "1136" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1147", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "toString(): string;", - "mainBuggyLine": "1147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1157", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "length: number;", - "mainBuggyLine": "1157" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1157", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length: number;", - "mainBuggyLine": "1157" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1168", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getCapacity(): number;", - "mainBuggyLine": "1168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1178", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "clear(): void;", - "mainBuggyLine": "1178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1189", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getCreateCount(): number;", - "mainBuggyLine": "1189" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1200", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getMissCount(): number;", - "mainBuggyLine": "1200" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1211", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getRemovalCount(): number;", - "mainBuggyLine": "1211" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1222", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getMatchCount(): number;", - "mainBuggyLine": "1222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1233", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPutCount(): number;", - "mainBuggyLine": "1233" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1244", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isEmpty(): boolean;", - "mainBuggyLine": "1244" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1256", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "get(key: K): V | undefined;", - "mainBuggyLine": "1256" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1269", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "put(key: K, value: V): V;", - "mainBuggyLine": "1269" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1280", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "values(): V[];", - "mainBuggyLine": "1280" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1291", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "keys(): K[];", - "mainBuggyLine": "1291" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1303", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "remove(key: K): V | undefined;", - "mainBuggyLine": "1303" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1319", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "afterRemoval(isEvict: boolean, key: K, value: V, newValue: V): void;", - "mainBuggyLine": "1319" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1331", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contains(key: K): boolean;", - "mainBuggyLine": "1331" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1343", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createDefault(key: K): V;", - "mainBuggyLine": "1343" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1354", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "entries(): IterableIterator<[K, V]>;", - "mainBuggyLine": "1354" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1364", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "[Symbol.iterator](): IterableIterator<[K, V]>;", - "mainBuggyLine": "1364" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1364", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_01", - "description": "API check error of [wrong value]: The [useinstead] tag value is incorrect. Please check the usage method.", - "language": "ts", - "mainBuggyCode": "[Symbol.iterator](): IterableIterator<[K, V]>;", - "mainBuggyLine": "1364" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1380", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class LRUCache", - "mainBuggyLine": "1380" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1396", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(capacity?: number);", - "mainBuggyLine": "1396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1415", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "updateCapacity(newCapacity: number): void;", - "mainBuggyLine": "1415" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1432", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "toString(): string;", - "mainBuggyLine": "1432" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1447", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "length: number;", - "mainBuggyLine": "1447" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1447", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length: number;", - "mainBuggyLine": "1447" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1464", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getCapacity(): number;", - "mainBuggyLine": "1464" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1479", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "clear(): void;", - "mainBuggyLine": "1479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1496", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getCreateCount(): number;", - "mainBuggyLine": "1496" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1513", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getMissCount(): number;", - "mainBuggyLine": "1513" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1530", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getRemovalCount(): number;", - "mainBuggyLine": "1530" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1547", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getMatchCount(): number;", - "mainBuggyLine": "1547" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1564", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPutCount(): number;", - "mainBuggyLine": "1564" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1581", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isEmpty(): boolean;", - "mainBuggyLine": "1581" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1606", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "get(key: K): V | undefined;", - "mainBuggyLine": "1606" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1633", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "put(key: K, value: V): V;", - "mainBuggyLine": "1633" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1650", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "values(): V[];", - "mainBuggyLine": "1650" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1669", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "keys(): K[];", - "mainBuggyLine": "1669" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1694", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "remove(key: K): V | undefined;", - "mainBuggyLine": "1694" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1727", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "afterRemoval(isEvict: boolean, key: K, value: V, newValue: V): void;", - "mainBuggyLine": "1727" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1752", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contains(key: K): boolean;", - "mainBuggyLine": "1752" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1777", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createDefault(key: K): V;", - "mainBuggyLine": "1777" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1794", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "entries(): IterableIterator<[K, V]>;", - "mainBuggyLine": "1794" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1811", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "[Symbol.iterator](): IterableIterator<[K, V]>;", - "mainBuggyLine": "1811" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1829", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ScopeComparable", - "mainBuggyLine": "1829" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1847", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "compareTo(other: ScopeComparable): boolean;", - "mainBuggyLine": "1847" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1863", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type ScopeType = ScopeComparable | number;", - "mainBuggyLine": "1863" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1863", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type ScopeType = ScopeComparable | number;", - "mainBuggyLine": "1863" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1873", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class Scope", - "mainBuggyLine": "1873" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1884", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(lowerObj: ScopeType, upperObj: ScopeType);", - "mainBuggyLine": "1884" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1895", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "toString(): string;", - "mainBuggyLine": "1895" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1907", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "intersect(range: Scope): Scope;", - "mainBuggyLine": "1907" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1920", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "intersect(lowerObj: ScopeType, upperObj: ScopeType): Scope;", - "mainBuggyLine": "1920" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1931", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getUpper(): ScopeType;", - "mainBuggyLine": "1931" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1942", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getLower(): ScopeType;", - "mainBuggyLine": "1942" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1955", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "expand(lowerObj: ScopeType, upperObj: ScopeType): Scope;", - "mainBuggyLine": "1955" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1967", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "expand(range: Scope): Scope;", - "mainBuggyLine": "1967" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1979", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "expand(value: ScopeType): Scope;", - "mainBuggyLine": "1979" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "1991", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contains(value: ScopeType): boolean;", - "mainBuggyLine": "1991" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2003", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contains(range: Scope): boolean;", - "mainBuggyLine": "2003" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2015", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "clamp(value: ScopeType): ScopeType;", - "mainBuggyLine": "2015" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2031", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class ScopeHelper", - "mainBuggyLine": "2031" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2055", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(lowerObj: ScopeType, upperObj: ScopeType);", - "mainBuggyLine": "2055" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2072", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "toString(): string;", - "mainBuggyLine": "2072" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2097", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "intersect(range: ScopeHelper): ScopeHelper;", - "mainBuggyLine": "2097" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2124", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "intersect(lowerObj: ScopeType, upperObj: ScopeType): ScopeHelper;", - "mainBuggyLine": "2124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2141", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getUpper(): ScopeType;", - "mainBuggyLine": "2141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2158", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getLower(): ScopeType;", - "mainBuggyLine": "2158" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2172", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "expand(lowerObj: ScopeType, upperObj: ScopeType): ScopeHelper;", - "mainBuggyLine": "2172" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2197", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "expand(range: ScopeHelper): ScopeHelper;", - "mainBuggyLine": "2197" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2222", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "expand(value: ScopeType): ScopeHelper;", - "mainBuggyLine": "2222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2247", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contains(value: ScopeType): boolean;", - "mainBuggyLine": "2247" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2272", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contains(range: ScopeHelper): boolean;", - "mainBuggyLine": "2272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2297", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "clamp(value: ScopeType): ScopeType;", - "mainBuggyLine": "2297" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2309", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class Base64", - "mainBuggyLine": "2309" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2318", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "2318" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2330", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "encodeSync(src: Uint8Array): Uint8Array;", - "mainBuggyLine": "2330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2342", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "encodeToStringSync(src: Uint8Array): string;", - "mainBuggyLine": "2342" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2354", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "decodeSync(src: Uint8Array | string): Uint8Array;", - "mainBuggyLine": "2354" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2366", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "encode(src: Uint8Array): Promise;", - "mainBuggyLine": "2366" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2378", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "encodeToString(src: Uint8Array): Promise;", - "mainBuggyLine": "2378" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2390", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "decode(src: Uint8Array | string): Promise;", - "mainBuggyLine": "2390" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2763", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "encodeToString(src: Uint8Array, options?: Type): Promise;", - "mainBuggyLine": "2763" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2805", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "decode(src: Uint8Array | string, options?: Type): Promise;", - "mainBuggyLine": "2805" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2821", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class types", - "mainBuggyLine": "2821" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2835", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "2835" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2853", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isAnyArrayBuffer(value: Object): boolean;", - "mainBuggyLine": "2853" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2873", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isArrayBufferView(value: Object): boolean;", - "mainBuggyLine": "2873" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2891", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isArgumentsObject(value: Object): boolean;", - "mainBuggyLine": "2891" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2911", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isArrayBuffer(value: Object): boolean;", - "mainBuggyLine": "2911" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2931", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isAsyncFunction(value: Object): boolean;", - "mainBuggyLine": "2931" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2949", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isBigInt64Array(value: Object): boolean;", - "mainBuggyLine": "2949" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2967", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isBigUint64Array(value: Object): boolean;", - "mainBuggyLine": "2967" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "2985", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isBooleanObject(value: Object): boolean;", - "mainBuggyLine": "2985" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3003", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isBoxedPrimitive(value: Object): boolean;", - "mainBuggyLine": "3003" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3021", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isDataView(value: Object): boolean;", - "mainBuggyLine": "3021" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3039", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isDate(value: Object): boolean;", - "mainBuggyLine": "3039" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3057", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isExternal(value: Object): boolean;", - "mainBuggyLine": "3057" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3075", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isFloat32Array(value: Object): boolean;", - "mainBuggyLine": "3075" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3093", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isFloat64Array(value: Object): boolean;", - "mainBuggyLine": "3093" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3113", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isGeneratorFunction(value: Object): boolean;", - "mainBuggyLine": "3113" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3135", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isGeneratorObject(value: Object): boolean;", - "mainBuggyLine": "3135" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3153", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isInt8Array(value: Object): boolean;", - "mainBuggyLine": "3153" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3171", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isInt16Array(value: Object): boolean;", - "mainBuggyLine": "3171" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3189", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isInt32Array(value: Object): boolean;", - "mainBuggyLine": "3189" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3207", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isMap(value: Object): boolean;", - "mainBuggyLine": "3207" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3225", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isMapIterator(value: Object): boolean;", - "mainBuggyLine": "3225" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3243", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isModuleNamespaceObject(value: Object): boolean;", - "mainBuggyLine": "3243" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3261", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isNativeError(value: Object): boolean;", - "mainBuggyLine": "3261" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3279", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isNumberObject(value: Object): boolean;", - "mainBuggyLine": "3279" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3297", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isPromise(value: Object): boolean;", - "mainBuggyLine": "3297" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3315", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isProxy(value: Object): boolean;", - "mainBuggyLine": "3315" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3333", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isRegExp(value: Object): boolean;", - "mainBuggyLine": "3333" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3351", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isSet(value: Object): boolean;", - "mainBuggyLine": "3351" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3369", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isSetIterator(value: Object): boolean;", - "mainBuggyLine": "3369" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3389", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isSharedArrayBuffer(value: Object): boolean;", - "mainBuggyLine": "3389" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3407", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isStringObject(value: Object): boolean;", - "mainBuggyLine": "3407" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3425", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isSymbolObject(value: Object): boolean;", - "mainBuggyLine": "3425" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3443", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isTypedArray(value: Object): boolean;", - "mainBuggyLine": "3443" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3461", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isUint8Array(value: Object): boolean;", - "mainBuggyLine": "3461" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3479", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isUint8ClampedArray(value: Object): boolean;", - "mainBuggyLine": "3479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3497", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isUint16Array(value: Object): boolean;", - "mainBuggyLine": "3497" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3515", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isUint32Array(value: Object): boolean;", - "mainBuggyLine": "3515" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3533", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isWeakMap(value: Object): boolean;", - "mainBuggyLine": "3533" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3551", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isWeakSet(value: Object): boolean;", - "mainBuggyLine": "3551" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3560", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class Aspect", - "mainBuggyLine": "3560" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3577", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static addBefore(targetClass: Object, methodName: string, isStatic: boolean, before: Function): void;", - "mainBuggyLine": "3577" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3594", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static addAfter(targetClass: Object, methodName: string, isStatic: boolean, after: Function): void;", - "mainBuggyLine": "3594" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts", - "codeContextStaerLine": "3610", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static replace(targetClass: Object, methodName: string, isStatic: boolean, instead: Function) : void;", - "mainBuggyLine": "3610" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.Deque.d.ts", - "codeContextStaerLine": "68", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length: number;", - "mainBuggyLine": "68" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.HashMap.d.ts", - "codeContextStaerLine": "92", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length: number;", - "mainBuggyLine": "92" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.util.HashMap.d.ts", - "codeContextStaerLine": "547", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [[Symbol.iterator]] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "[Symbol.iterator](): IterableIterator<[K, V]>;", - "mainBuggyLine": "547" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.HashSet.d.ts", - "codeContextStaerLine": "64", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length: number;", - "mainBuggyLine": "64" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.json.d.ts", - "codeContextStaerLine": "36", - "defectLevel": 2, - "defectType": "API_DEFINE_UNALLOWABLE_02", - "description": "API check error of [forbidden word]: Illegal [this] keyword used in the API.", - "language": "ts", - "mainBuggyCode": "type Transformer = (this: Object, key: string, value: Object) => Object | undefined | null", - "mainBuggyLine": "36" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.json.d.ts", - "codeContextStaerLine": "36", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type Transformer = (this: Object, key: string, value: Object) => Object | undefined | null", - "mainBuggyLine": "36" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.LightWeightMap.d.ts", - "codeContextStaerLine": "64", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length: number;", - "mainBuggyLine": "64" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.LightWeightSet.d.ts", - "codeContextStaerLine": "64", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length: number;", - "mainBuggyLine": "64" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.LinkedList.d.ts", - "codeContextStaerLine": "68", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length: number;", - "mainBuggyLine": "68" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.List.d.ts", - "codeContextStaerLine": "66", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length: number;", - "mainBuggyLine": "66" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.PlainArray.d.ts", - "codeContextStaerLine": "66", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length: number;", - "mainBuggyLine": "66" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.Queue.d.ts", - "codeContextStaerLine": "68", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length: number;", - "mainBuggyLine": "68" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.Stack.d.ts", - "codeContextStaerLine": "66", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length: number;", - "mainBuggyLine": "66" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.util.stream.d.ts", - "codeContextStaerLine": "125", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_string] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(event: string, callback: Callback): void;", - "mainBuggyLine": "125" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.util.stream.d.ts", - "codeContextStaerLine": "136", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_string] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(event: string, callback?: Callback): void;", - "mainBuggyLine": "136" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.util.stream.d.ts", - "codeContextStaerLine": "427", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_string] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(event: string, callback: Callback): void;", - "mainBuggyLine": "427" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.util.stream.d.ts", - "codeContextStaerLine": "438", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_string] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(event: string, callback?: Callback): void;", - "mainBuggyLine": "438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.TreeMap.d.ts", - "codeContextStaerLine": "82", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length: number;", - "mainBuggyLine": "82" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.TreeSet.d.ts", - "codeContextStaerLine": "80", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length: number;", - "mainBuggyLine": "80" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.Vector.d.ts", - "codeContextStaerLine": "47", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length: number;", - "mainBuggyLine": "47" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "50", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function vibrate(duration: number, callback?: AsyncCallback): void;", - "mainBuggyLine": "50" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "63", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function vibrate(duration: number): Promise;", - "mainBuggyLine": "63" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "76", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function vibrate(effectId: EffectId): Promise;", - "mainBuggyLine": "76" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "89", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function vibrate(effectId: EffectId, callback?: AsyncCallback): void;", - "mainBuggyLine": "89" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "169", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function stopVibration(stopMode: VibratorStopMode): Promise;", - "mainBuggyLine": "169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "183", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function stopVibration(stopMode: VibratorStopMode, callback: AsyncCallback): void;", - "mainBuggyLine": "183" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "250", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isSupportEffect(effectId: string, callback: AsyncCallback): void;", - "mainBuggyLine": "250" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "250", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function isSupportEffect(effectId: string, callback: AsyncCallback): void;", - "mainBuggyLine": "250" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "263", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isSupportEffect(effectId: string): Promise;", - "mainBuggyLine": "263" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "263", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function isSupportEffect(effectId: string): Promise;", - "mainBuggyLine": "263" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "276", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isSupportEffectSync(effectId: string): boolean;", - "mainBuggyLine": "276" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "289", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function stop(stopMode: VibratorStopMode): Promise;", - "mainBuggyLine": "289" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "302", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function stop(stopMode: VibratorStopMode, callback?: AsyncCallback): void;", - "mainBuggyLine": "302" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "312", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isHdHapticSupported(): boolean;", - "mainBuggyLine": "312" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "321", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum EffectId", - "mainBuggyLine": "321" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "328", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EFFECT_CLOCK_TIMER = 'haptic.clock.timer'", - "mainBuggyLine": "328" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "338", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum HapticFeedback", - "mainBuggyLine": "338" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "345", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EFFECT_SOFT = 'haptic.effect.soft'", - "mainBuggyLine": "345" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "353", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EFFECT_HARD = 'haptic.effect.hard'", - "mainBuggyLine": "353" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "361", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EFFECT_SHARP = 'haptic.effect.sharp'", - "mainBuggyLine": "361" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "371", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum VibratorStopMode", - "mainBuggyLine": "371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "378", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VIBRATOR_STOP_MODE_TIME = 'time'", - "mainBuggyLine": "378" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "386", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VIBRATOR_STOP_MODE_PRESET = 'preset'", - "mainBuggyLine": "386" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "406", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type Usage = 'unknown' | 'alarm' | 'ring' | 'notification' | 'communication' |\r\n 'touch' | 'media' | 'physicalFeedback' | 'simulateReality';", - "mainBuggyLine": "406" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "438", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "id?: number;", - "mainBuggyLine": "438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "453", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "usage: Usage;", - "mainBuggyLine": "453" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "478", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type VibrateEffect = VibrateTime | VibratePreset | VibrateFromFile;", - "mainBuggyLine": "478" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "509", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: 'time';", - "mainBuggyLine": "509" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "524", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "duration: number;", - "mainBuggyLine": "524" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "534", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface VibratePreset", - "mainBuggyLine": "534" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "541", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type: 'preset';", - "mainBuggyLine": "541" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "541", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: 'preset';", - "mainBuggyLine": "541" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "549", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "effectId: string;", - "mainBuggyLine": "549" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "549", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "effectId: string;", - "mainBuggyLine": "549" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "564", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "count?: number;", - "mainBuggyLine": "564" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "573", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "intensity?: number;", - "mainBuggyLine": "573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "583", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface VibrateFromFile", - "mainBuggyLine": "583" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "590", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type: 'file';", - "mainBuggyLine": "590" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "590", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: 'file';", - "mainBuggyLine": "590" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "598", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hapticFd: HapticFileDescriptor;", - "mainBuggyLine": "598" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "598", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "hapticFd: HapticFileDescriptor;", - "mainBuggyLine": "598" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "609", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface HapticFileDescriptor", - "mainBuggyLine": "609" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "617", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fd: number;", - "mainBuggyLine": "617" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "617", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fd: number;", - "mainBuggyLine": "617" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "626", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "offset?: number;", - "mainBuggyLine": "626" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "626", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "offset?: number;", - "mainBuggyLine": "626" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "635", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "length?: number;", - "mainBuggyLine": "635" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts", - "codeContextStaerLine": "635", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length?: number;", - "mainBuggyLine": "635" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wallpaper.d.ts", - "codeContextStaerLine": "48", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "red: number;", - "mainBuggyLine": "48" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wallpaper.d.ts", - "codeContextStaerLine": "56", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "green: number;", - "mainBuggyLine": "56" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wallpaper.d.ts", - "codeContextStaerLine": "64", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "blue: number;", - "mainBuggyLine": "64" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wallpaper.d.ts", - "codeContextStaerLine": "72", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "alpha: number;", - "mainBuggyLine": "72" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wantAgent.d.ts", - "codeContextStaerLine": "449", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type WantAgent = object;", - "mainBuggyLine": "449" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "109", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "headerKey: string;", - "mainBuggyLine": "109" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "129", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "headerValue: string;", - "mainBuggyLine": "129" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "433", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: WebHitTestType;", - "mainBuggyLine": "433" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "448", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "extra: string;", - "mainBuggyLine": "448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "489", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "schemeName: string;", - "mainBuggyLine": "489" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "504", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isSupportCORS: boolean;", - "mainBuggyLine": "504" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "519", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isSupportFetch: boolean;", - "mainBuggyLine": "519" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "530", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isStandard?: boolean;", - "mainBuggyLine": "530" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "540", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isLocal?: boolean;", - "mainBuggyLine": "540" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "550", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isDisplayIsolated?: boolean;", - "mainBuggyLine": "550" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "560", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isSecure?: boolean;", - "mainBuggyLine": "560" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "570", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isCspBypassing?: boolean;", - "mainBuggyLine": "570" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "579", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isCodeCacheSupported?: boolean;", - "mainBuggyLine": "579" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "619", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "origin: string;", - "mainBuggyLine": "619" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "633", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "usage: number;", - "mainBuggyLine": "633" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "647", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "quota: number;", - "mainBuggyLine": "647" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "665", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "url: string;", - "mainBuggyLine": "665" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "673", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "method: string;", - "mainBuggyLine": "673" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "681", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "formData: string;", - "mainBuggyLine": "681" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "1202", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static getCookie(url: string): string;", - "mainBuggyLine": "1202" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "1264", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static setCookie(url: string, value: string): void;", - "mainBuggyLine": "1264" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "1460", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static deleteEntireCookie(): void;", - "mainBuggyLine": "1460" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "1503", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "static deleteSessionCookie(): void;", - "mainBuggyLine": "1503" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "1967", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type WebMessage = ArrayBuffer | string;", - "mainBuggyLine": "1967" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "2004", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isExtentionType?: boolean;", - "mainBuggyLine": "2004" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "2137", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "icon: image.PixelMap;", - "mainBuggyLine": "2137" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "2151", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "historyUrl: string;", - "mainBuggyLine": "2151" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "2165", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "historyRawUrl: string;", - "mainBuggyLine": "2165" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "2179", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "title: string;", - "mainBuggyLine": "2179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "2217", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "currentIndex: number;", - "mainBuggyLine": "2217" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "2231", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "size: number;", - "mainBuggyLine": "2231" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "2577", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface CacheOptions", - "mainBuggyLine": "2577" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "2585", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "responseHeaders: Array;", - "mainBuggyLine": "2585" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "2585", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "responseHeaders: Array;", - "mainBuggyLine": "2585" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "2594", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum OfflineResourceType", - "mainBuggyLine": "2594" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "2601", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "IMAGE", - "mainBuggyLine": "2601" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "2609", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CSS", - "mainBuggyLine": "2609" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "2617", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CLASSIC_JS", - "mainBuggyLine": "2617" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "2625", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MODULE_JS", - "mainBuggyLine": "2625" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "2634", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface OfflineResourceMap", - "mainBuggyLine": "2634" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "2642", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "urlList: Array,", - "mainBuggyLine": "2642" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "2651", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "resource: Uint8Array,", - "mainBuggyLine": "2651" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "2660", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "responseHeaders: Array,", - "mainBuggyLine": "2660" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "2669", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type: OfflineResourceType", - "mainBuggyLine": "2669" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "4371", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createWebPrintDocumentAdapter(jobName: string): print.PrintDocumentAdapter;", - "mainBuggyLine": "4371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "4768", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "terminateRenderProcess(): boolean;", - "mainBuggyLine": "4768" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "4785", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "precompileJavaScript(url: string, script: string | Uint8Array, cacheOptions: CacheOptions): Promise;", - "mainBuggyLine": "4785" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "4831", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "injectOfflineResources(resourceMaps: Array): void;", - "mainBuggyLine": "4831" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5496", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum WebResourceType", - "mainBuggyLine": "5496" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5503", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MAIN_FRAME = 0", - "mainBuggyLine": "5503" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5511", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SUB_FRAME = 1", - "mainBuggyLine": "5511" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5519", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STYLE_SHEET = 2", - "mainBuggyLine": "5519" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5527", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCRIPT = 3", - "mainBuggyLine": "5527" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5535", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "IMAGE = 4", - "mainBuggyLine": "5535" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5543", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FONT_RESOURCE = 5", - "mainBuggyLine": "5543" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5551", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SUB_RESOURCE = 6", - "mainBuggyLine": "5551" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5559", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OBJECT = 7", - "mainBuggyLine": "5559" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5567", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MEDIA = 8", - "mainBuggyLine": "5567" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5575", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WORKER = 9", - "mainBuggyLine": "5575" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5583", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SHARED_WORKER = 10", - "mainBuggyLine": "5583" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5591", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PREFETCH = 11", - "mainBuggyLine": "5591" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5599", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FAVICON = 12", - "mainBuggyLine": "5599" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5607", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "XHR = 13", - "mainBuggyLine": "5607" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5615", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PING = 14", - "mainBuggyLine": "5615" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5623", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SERVICE_WORKER = 15", - "mainBuggyLine": "5623" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5631", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CSP_REPORT = 16", - "mainBuggyLine": "5631" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5639", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PLUGIN_RESOURCE = 17", - "mainBuggyLine": "5639" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5647", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NAVIGATION_PRELOAD_MAIN_FRAME = 19", - "mainBuggyLine": "5647" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5655", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "NAVIGATION_PRELOAD_SUB_FRAME = 20", - "mainBuggyLine": "5655" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5736", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getRequestResourceType(): WebResourceType;", - "mainBuggyLine": "5736" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5744", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFrameUrl(): string;", - "mainBuggyLine": "5744" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5867", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "setEncoding(encoding: string): void;", - "mainBuggyLine": "5867" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "5889", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [3] [param] tag is incorrect. Please check if it matches the [3] parameter name.", - "language": "ts", - "mainBuggyCode": "setHeaderByName(name: string, value: string, overwrite: boolean): void;", - "mainBuggyLine": "5889" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6420", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum MediaType", - "mainBuggyLine": "6420" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6426", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "VIDEO = 0", - "mainBuggyLine": "6426" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6432", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUDIO", - "mainBuggyLine": "6432" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6472", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type: SourceType;", - "mainBuggyLine": "6472" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6472", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: SourceType;", - "mainBuggyLine": "6472" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6480", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "source: string;", - "mainBuggyLine": "6480" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6488", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "format: string;", - "mainBuggyLine": "6488" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6498", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface RectEvent", - "mainBuggyLine": "6498" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6506", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "x: number;", - "mainBuggyLine": "6506" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6514", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "y: number;", - "mainBuggyLine": "6514" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6522", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "width: number;", - "mainBuggyLine": "6522" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6530", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "height: number;", - "mainBuggyLine": "6530" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6547", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "id: string;", - "mainBuggyLine": "6547" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6555", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "rect: RectEvent;", - "mainBuggyLine": "6555" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6603", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "embedID: string,", - "mainBuggyLine": "6603" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6603", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "embedID: string,", - "mainBuggyLine": "6603" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6610", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "mediaType: MediaType,", - "mainBuggyLine": "6610" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6617", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "mediaSrcList: MediaSourceInfo[],", - "mainBuggyLine": "6617" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6624", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "surfaceInfo: NativeMediaPlayerSurfaceInfo,", - "mainBuggyLine": "6624" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6631", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "controlsShown: boolean,", - "mainBuggyLine": "6631" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6639", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "controlList: string[],", - "mainBuggyLine": "6639" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6646", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "muted: boolean,", - "mainBuggyLine": "6646" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6653", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "posterUrl: string,", - "mainBuggyLine": "6653" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6660", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "preload: Preload,", - "mainBuggyLine": "6660" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6666", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "headers: Record,", - "mainBuggyLine": "6666" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6666", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "headers: Record,", - "mainBuggyLine": "6666" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6672", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "attributes: Record,", - "mainBuggyLine": "6672" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6672", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "attributes: Record,", - "mainBuggyLine": "6672" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6682", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type CreateNativeMediaPlayerCallback =\n (handler: NativeMediaPlayerHandler, mediaInfo: MediaInfo) => NativeMediaPlayerBridge", - "mainBuggyLine": "6682" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6700", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "static setAdsBlockRules(rulesFile: string, replace: boolean): void;", - "mainBuggyLine": "6700" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6700", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [2] [param] tag is incorrect. Please check if it matches the [2] parameter name.", - "language": "ts", - "mainBuggyCode": "static setAdsBlockRules(rulesFile: string, replace: boolean): void;", - "mainBuggyLine": "6700" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6710", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "static addAdsBlockDisallowedList(domainSuffixes: Array): void;", - "mainBuggyLine": "6710" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6723", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "static addAdsBlockAllowedList(domainSuffixes: Array): void;", - "mainBuggyLine": "6723" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6732", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "static removeAdsBlockDisallowedList(domainSuffixes: Array): void;", - "mainBuggyLine": "6732" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6741", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "static removeAdsBlockAllowedList(domainSuffixes: Array): void;", - "mainBuggyLine": "6741" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6750", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "static clearAdsBlockDisallowedList(domainSuffixes: Array): void;", - "mainBuggyLine": "6750" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts", - "codeContextStaerLine": "6759", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "static clearAdsBlockAllowedList(domainSuffixes: Array): void;", - "mainBuggyLine": "6759" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "28", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare namespace wifi", - "mainBuggyLine": "28" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "103", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "function getScanInfos(callback: AsyncCallback>): void;", - "mainBuggyLine": "103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "135", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [2] [param] tag is incorrect. Please check if it matches the [2] parameter name.", - "language": "ts", - "mainBuggyCode": "function addDeviceConfig(config: WifiDeviceConfig, callback: AsyncCallback): void;", - "mainBuggyLine": "135" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "167", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [2] [param] tag is incorrect. Please check if it matches the [2] parameter name.", - "language": "ts", - "mainBuggyCode": "function addUntrustedConfig(config: WifiDeviceConfig, callback: AsyncCallback): void;", - "mainBuggyLine": "167" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "197", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [2] [param] tag is incorrect. Please check if it matches the [2] parameter name.", - "language": "ts", - "mainBuggyCode": "function removeUntrustedConfig(config: WifiDeviceConfig, callback: AsyncCallback): void;", - "mainBuggyLine": "197" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "278", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "function getLinkedInfo(callback: AsyncCallback): void;", - "mainBuggyLine": "278" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "538", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "function setHotspotConfig(config: HotspotConfig): boolean;", - "mainBuggyLine": "538" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "590", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "function getP2pLinkedInfo(callback: AsyncCallback): void;", - "mainBuggyLine": "590" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "614", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "function getCurrentGroup(callback: AsyncCallback): void;", - "mainBuggyLine": "614" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "638", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "function getP2pPeerDevices(callback: AsyncCallback): void;", - "mainBuggyLine": "638" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "726", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "function deletePersistentGroup(netId: number): boolean;", - "mainBuggyLine": "726" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1140", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ssid: string;", - "mainBuggyLine": "1140" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1147", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bssid: string;", - "mainBuggyLine": "1147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1154", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "preSharedKey: string;", - "mainBuggyLine": "1154" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1161", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isHiddenSsid: boolean;", - "mainBuggyLine": "1161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1168", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "securityType: WifiSecurityType;", - "mainBuggyLine": "1168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1176", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "creatorUid: number;", - "mainBuggyLine": "1176" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1184", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "disableReason: number;", - "mainBuggyLine": "1184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1192", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "netId: number;", - "mainBuggyLine": "1192" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1200", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "randomMacType: number;", - "mainBuggyLine": "1200" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1208", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "randomMacAddr: string;", - "mainBuggyLine": "1208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1216", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ipType: IpType;", - "mainBuggyLine": "1216" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1224", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "staticIp: IpConfig;", - "mainBuggyLine": "1224" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1245", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ipAddress: number;", - "mainBuggyLine": "1245" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1254", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "gateway: number;", - "mainBuggyLine": "1254" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1263", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "dnsServers: number[];", - "mainBuggyLine": "1263" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1272", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "domains: Array;", - "mainBuggyLine": "1272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1290", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ssid: string;", - "mainBuggyLine": "1290" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1297", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bssid: string;", - "mainBuggyLine": "1297" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1304", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "capabilities: string;", - "mainBuggyLine": "1304" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1311", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "securityType: WifiSecurityType;", - "mainBuggyLine": "1311" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1318", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rssi: number;", - "mainBuggyLine": "1318" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1325", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "band: number;", - "mainBuggyLine": "1325" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1332", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "frequency: number;", - "mainBuggyLine": "1332" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1339", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "channelWidth: number;", - "mainBuggyLine": "1339" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1347", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "timestamp: number;", - "mainBuggyLine": "1347" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1415", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ssid: string;", - "mainBuggyLine": "1415" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1423", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bssid: string;", - "mainBuggyLine": "1423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1432", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "networkId: number;", - "mainBuggyLine": "1432" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1440", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rssi: number;", - "mainBuggyLine": "1440" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1448", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "band: number;", - "mainBuggyLine": "1448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1456", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "linkSpeed: number;", - "mainBuggyLine": "1456" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1464", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "frequency: number;", - "mainBuggyLine": "1464" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1472", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isHidden: boolean;", - "mainBuggyLine": "1472" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1480", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isRestricted: boolean;", - "mainBuggyLine": "1480" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1490", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "chload: number;", - "mainBuggyLine": "1490" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1499", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "snr: number;", - "mainBuggyLine": "1499" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1508", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "macAddress: string;", - "mainBuggyLine": "1508" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1516", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ipAddress: number;", - "mainBuggyLine": "1516" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1526", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "suppState: SuppState;", - "mainBuggyLine": "1526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1534", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "connState: ConnState;", - "mainBuggyLine": "1534" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1553", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ipAddress: number;", - "mainBuggyLine": "1553" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1561", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "gateway: number;", - "mainBuggyLine": "1561" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1569", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "netmask: number;", - "mainBuggyLine": "1569" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1578", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "primaryDns: number;", - "mainBuggyLine": "1578" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1586", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "secondDns: number;", - "mainBuggyLine": "1586" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1594", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serverIp: number;", - "mainBuggyLine": "1594" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1602", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "leaseDuration: number;", - "mainBuggyLine": "1602" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1623", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ssid: string;", - "mainBuggyLine": "1623" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1632", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "securityType: WifiSecurityType;", - "mainBuggyLine": "1632" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1641", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "band: number;", - "mainBuggyLine": "1641" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1650", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "preSharedKey: string;", - "mainBuggyLine": "1650" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1659", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "maxConn: number;", - "mainBuggyLine": "1659" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1680", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "1680" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1689", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "macAddress: string;", - "mainBuggyLine": "1689" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1698", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ipAddress: string;", - "mainBuggyLine": "1698" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1949", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceName: string;", - "mainBuggyLine": "1949" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1957", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceAddress: string;", - "mainBuggyLine": "1957" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1965", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "primaryDeviceType: string;", - "mainBuggyLine": "1965" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1973", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceStatus: P2pDeviceStatus;", - "mainBuggyLine": "1973" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1981", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "groupCapabilitys: number;", - "mainBuggyLine": "1981" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "1999", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceAddress: string;", - "mainBuggyLine": "1999" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "2008", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "netId: number;", - "mainBuggyLine": "2008" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "2016", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "passphrase: string;", - "mainBuggyLine": "2016" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "2024", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "groupName: string;", - "mainBuggyLine": "2024" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "2032", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "goBand: GroupOwnerBand;", - "mainBuggyLine": "2032" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "2050", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isP2pGo: boolean;", - "mainBuggyLine": "2050" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "2058", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ownerInfo: WifiP2pDevice;", - "mainBuggyLine": "2058" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "2066", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "passphrase: string;", - "mainBuggyLine": "2066" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "2074", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "interface: string;", - "mainBuggyLine": "2074" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "2082", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "groupName: string;", - "mainBuggyLine": "2082" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "2089", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "networkId: number;", - "mainBuggyLine": "2089" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "2096", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "frequency: number;", - "mainBuggyLine": "2096" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "2104", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "clientDevices: WifiP2pDevice[];", - "mainBuggyLine": "2104" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "2112", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "goIpAddress: string;", - "mainBuggyLine": "2112" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "2157", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "connectState: P2pConnectState;", - "mainBuggyLine": "2157" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "2165", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isGroupOwner: boolean;", - "mainBuggyLine": "2165" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts", - "codeContextStaerLine": "2173", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "groupOwnerAddr: string;", - "mainBuggyLine": "2173" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiext.d.ts", - "codeContextStaerLine": "33", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare namespace wifiext", - "mainBuggyLine": "33" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiext.d.ts", - "codeContextStaerLine": "44", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function enableHotspot(): boolean;", - "mainBuggyLine": "44" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiext.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function disableHotspot(): boolean;", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiext.d.ts", - "codeContextStaerLine": "111", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function setPowerModel(model: PowerModel): boolean;", - "mainBuggyLine": "111" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "41", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare namespace wifiManager", - "mainBuggyLine": "41" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "54", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function enableWifi(): void;", - "mainBuggyLine": "54" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "68", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function disableWifi(): void;", - "mainBuggyLine": "68" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "82", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function enableSemiWifi(): void;", - "mainBuggyLine": "82" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "130", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function scan(): void;", - "mainBuggyLine": "130" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "143", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function startScan(): void;", - "mainBuggyLine": "143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "158", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getScanResults(): Promise>;", - "mainBuggyLine": "158" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "172", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getWifiDetailState(): WifiDetailState;", - "mainBuggyLine": "172" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "187", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getScanResults(callback: AsyncCallback>): void;", - "mainBuggyLine": "187" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "202", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getScanResultsSync(): Array;", - "mainBuggyLine": "202" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "241", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setScanAlwaysAllowed(isScanAlwaysAllowed: boolean): void;", - "mainBuggyLine": "241" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "255", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getScanAlwaysAllowed(): boolean;", - "mainBuggyLine": "255" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "272", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function addDeviceConfig(config: WifiDeviceConfig): Promise;", - "mainBuggyLine": "272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "289", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function addDeviceConfig(config: WifiDeviceConfig, callback: AsyncCallback): void;", - "mainBuggyLine": "289" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "507", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function connectToNetwork(networkId: number): void;", - "mainBuggyLine": "507" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "525", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function connectToDevice(config: WifiDeviceConfig): void;", - "mainBuggyLine": "525" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "538", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function disconnect(): void;", - "mainBuggyLine": "538" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "554", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getSignalLevel(rssi: number, band: number): number;", - "mainBuggyLine": "554" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "610", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getLinkedInfo(callback: AsyncCallback): void;", - "mainBuggyLine": "610" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "652", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getSupportedFeatures(): number;", - "mainBuggyLine": "652" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "667", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isFeatureSupported(featureId: number): boolean;", - "mainBuggyLine": "667" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "683", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getDeviceMacAddress(): string[];", - "mainBuggyLine": "683" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "696", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getIpInfo(): IpInfo;", - "mainBuggyLine": "696" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "709", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getIpv6Info(): Ipv6Info;", - "mainBuggyLine": "709" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "721", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getCountryCode(): string;", - "mainBuggyLine": "721" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "735", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function reassociate(): void;", - "mainBuggyLine": "735" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "749", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function reconnect(): void;", - "mainBuggyLine": "749" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "775", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getDeviceConfigs(): Array;", - "mainBuggyLine": "775" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "793", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function updateNetwork(config: WifiDeviceConfig): number;", - "mainBuggyLine": "793" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "810", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function disableNetwork(netId: number): void;", - "mainBuggyLine": "810" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "823", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function removeAllNetwork(): void;", - "mainBuggyLine": "823" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "842", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function removeDevice(id: number): void;", - "mainBuggyLine": "842" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "855", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isBandTypeSupported(bandType: WifiBandType): boolean;", - "mainBuggyLine": "855" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "869", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function get5GChannelList(): Array;", - "mainBuggyLine": "869" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "882", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getDisconnectedReason(): DisconnectedReason;", - "mainBuggyLine": "882" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "895", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function startPortalCertification(): void;", - "mainBuggyLine": "895" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "907", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isMeteredHotspot(): boolean;", - "mainBuggyLine": "907" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "923", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function enableHiLinkHandshake(isHiLinkEnable: boolean, bssid: string, config: WifiDeviceConfig): void;", - "mainBuggyLine": "923" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "936", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function factoryReset(): void;", - "mainBuggyLine": "936" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "950", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function enableHotspot(): void;", - "mainBuggyLine": "950" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "964", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function disableHotspot(): void;", - "mainBuggyLine": "964" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "978", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isHotspotDualBandSupported(): boolean;", - "mainBuggyLine": "978" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "992", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function isHotspotActive(): boolean;", - "mainBuggyLine": "992" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1010", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setHotspotConfig(config: HotspotConfig): void;", - "mainBuggyLine": "1010" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1024", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getHotspotConfig(): HotspotConfig;", - "mainBuggyLine": "1024" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1052", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getStations(): Array;", - "mainBuggyLine": "1052" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1068", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function addHotspotBlockList(stationInfo: StationInfo);", - "mainBuggyLine": "1068" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1084", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function delHotspotBlockList(stationInfo: StationInfo);", - "mainBuggyLine": "1084" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1099", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getHotspotBlockList(): Array;", - "mainBuggyLine": "1099" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1111", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getP2pLinkedInfo(): Promise;", - "mainBuggyLine": "1111" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1123", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getP2pLinkedInfo(callback: AsyncCallback): void;", - "mainBuggyLine": "1123" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1145", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getCurrentGroup(): Promise;", - "mainBuggyLine": "1145" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1167", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getCurrentGroup(callback: AsyncCallback): void;", - "mainBuggyLine": "1167" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1189", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getP2pPeerDevices(): Promise;", - "mainBuggyLine": "1189" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1211", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getP2pPeerDevices(callback: AsyncCallback): void;", - "mainBuggyLine": "1211" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1237", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getP2pLocalDevice(): Promise;", - "mainBuggyLine": "1237" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1263", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getP2pLocalDevice(callback: AsyncCallback): void;", - "mainBuggyLine": "1263" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1277", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createGroup(config: WifiP2PConfig): void;", - "mainBuggyLine": "1277" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1288", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function removeGroup(): void;", - "mainBuggyLine": "1288" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1313", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function p2pConnect(config: WifiP2PConfig): void;", - "mainBuggyLine": "1313" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1324", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function p2pCancelConnect(): void;", - "mainBuggyLine": "1324" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1344", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function startDiscoverDevices(): void;", - "mainBuggyLine": "1344" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1355", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function stopDiscoverDevices(): void;", - "mainBuggyLine": "1355" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1370", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function deletePersistentGroup(netId: number): void;", - "mainBuggyLine": "1370" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1396", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getP2pGroups(): Promise>;", - "mainBuggyLine": "1396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1422", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getP2pGroups(callback: AsyncCallback>): void;", - "mainBuggyLine": "1422" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1438", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setDeviceName(devName: string): void;", - "mainBuggyLine": "1438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1645", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'wifiRssiChange', callback: Callback): void;", - "mainBuggyLine": "1645" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1661", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'wifiRssiChange', callback?: Callback): void;", - "mainBuggyLine": "1661" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1678", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'streamChange', callback: Callback): void;", - "mainBuggyLine": "1678" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1696", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'streamChange', callback?: Callback): void;", - "mainBuggyLine": "1696" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1713", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'deviceConfigChange', callback: Callback): void;", - "mainBuggyLine": "1713" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1730", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'deviceConfigChange', callback?: Callback): void;", - "mainBuggyLine": "1730" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1746", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'hotspotStateChange', callback: Callback): void;", - "mainBuggyLine": "1746" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1763", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'hotspotStateChange', callback?: Callback): void;", - "mainBuggyLine": "1763" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1780", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'hotspotStaJoin', callback: Callback): void;", - "mainBuggyLine": "1780" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1798", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'hotspotStaJoin', callback?: Callback): void;", - "mainBuggyLine": "1798" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1816", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'hotspotStaLeave', callback: Callback): void;", - "mainBuggyLine": "1816" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1833", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'hotspotStaLeave', callback?: Callback): void;", - "mainBuggyLine": "1833" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1848", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'p2pStateChange', callback: Callback): void;", - "mainBuggyLine": "1848" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1863", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'p2pStateChange', callback?: Callback): void;", - "mainBuggyLine": "1863" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1878", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'p2pConnectionChange', callback: Callback): void;", - "mainBuggyLine": "1878" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1893", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'p2pConnectionChange', callback?: Callback): void;", - "mainBuggyLine": "1893" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1921", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'p2pDeviceChange', callback: Callback): void;", - "mainBuggyLine": "1921" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1948", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'p2pDeviceChange', callback?: Callback): void;", - "mainBuggyLine": "1948" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1948", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function off(type: 'p2pDeviceChange', callback?: Callback): void;", - "mainBuggyLine": "1948" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1976", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'p2pPeerDeviceChange', callback: Callback): void;", - "mainBuggyLine": "1976" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2003", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'p2pPeerDeviceChange', callback?: Callback): void;", - "mainBuggyLine": "2003" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2003", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function off(type: 'p2pPeerDeviceChange', callback?: Callback): void;", - "mainBuggyLine": "2003" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2018", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'p2pPersistentGroupChange', callback: Callback): void;", - "mainBuggyLine": "2018" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2033", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'p2pPersistentGroupChange', callback?: Callback): void;", - "mainBuggyLine": "2033" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2048", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'p2pDiscoveryChange', callback: Callback): void;", - "mainBuggyLine": "2048" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2063", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'p2pDiscoveryChange', callback?: Callback): void;", - "mainBuggyLine": "2063" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2079", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum DeviceAddressType", - "mainBuggyLine": "2079" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2092", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "RANDOM_DEVICE_ADDRESS", - "mainBuggyLine": "2092" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2106", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "REAL_DEVICE_ADDRESS", - "mainBuggyLine": "2106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2115", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum EapMethod", - "mainBuggyLine": "2115" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2121", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EAP_NONE", - "mainBuggyLine": "2121" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2127", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EAP_PEAP", - "mainBuggyLine": "2127" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2133", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EAP_TLS", - "mainBuggyLine": "2133" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2139", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EAP_TTLS", - "mainBuggyLine": "2139" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2145", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EAP_PWD", - "mainBuggyLine": "2145" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2151", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EAP_SIM", - "mainBuggyLine": "2151" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2157", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EAP_AKA", - "mainBuggyLine": "2157" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2163", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EAP_AKA_PRIME", - "mainBuggyLine": "2163" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2169", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "EAP_UNAUTH_TLS", - "mainBuggyLine": "2169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2178", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum Phase2Method", - "mainBuggyLine": "2178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2184", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHASE2_NONE", - "mainBuggyLine": "2184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2190", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHASE2_PAP", - "mainBuggyLine": "2190" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2196", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHASE2_MSCHAP", - "mainBuggyLine": "2196" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2202", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHASE2_MSCHAPV2", - "mainBuggyLine": "2202" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2208", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHASE2_GTC", - "mainBuggyLine": "2208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2214", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHASE2_SIM", - "mainBuggyLine": "2214" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2220", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHASE2_AKA", - "mainBuggyLine": "2220" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2226", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PHASE2_AKA_PRIME", - "mainBuggyLine": "2226" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2236", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum DisconnectedReason", - "mainBuggyLine": "2236" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2243", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DISC_REASON_DEFAULT = 0", - "mainBuggyLine": "2243" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2251", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DISC_REASON_WRONG_PWD = 1", - "mainBuggyLine": "2251" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2259", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DISC_REASON_CONNECTION_FULL = 2", - "mainBuggyLine": "2259" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2269", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum WifiDetailState", - "mainBuggyLine": "2269" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2276", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "UNKNOWN = -1", - "mainBuggyLine": "2276" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2284", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INACTIVE = 0", - "mainBuggyLine": "2284" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2292", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ACTIVATED = 1", - "mainBuggyLine": "2292" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2300", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ACTIVATING = 2", - "mainBuggyLine": "2300" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2308", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEACTIVATING = 3", - "mainBuggyLine": "2308" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2316", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SEMI_ACTIVATING = 4", - "mainBuggyLine": "2316" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2324", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SEMI_ACTIVE = 5", - "mainBuggyLine": "2324" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2334", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum ProxyMethod", - "mainBuggyLine": "2334" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2341", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "METHOD_NONE = 0", - "mainBuggyLine": "2341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2349", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "METHOD_AUTO = 1", - "mainBuggyLine": "2349" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2357", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "METHOD_MANUAL = 2", - "mainBuggyLine": "2357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2367", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum WifiCategory", - "mainBuggyLine": "2367" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2374", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEFAULT = 1", - "mainBuggyLine": "2374" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2382", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI6 = 2", - "mainBuggyLine": "2382" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2390", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI6_PLUS = 3", - "mainBuggyLine": "2390" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2400", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface WifiProxyConfig", - "mainBuggyLine": "2400" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2407", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "proxyMethod?: ProxyMethod;", - "mainBuggyLine": "2407" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2407", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "proxyMethod?: ProxyMethod;", - "mainBuggyLine": "2407" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2415", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pacWebAddress?: string;", - "mainBuggyLine": "2415" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2415", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "pacWebAddress?: string;", - "mainBuggyLine": "2415" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2423", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "serverHostName?: string;", - "mainBuggyLine": "2423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2423", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serverHostName?: string;", - "mainBuggyLine": "2423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2431", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "serverPort?: number;", - "mainBuggyLine": "2431" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2431", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serverPort?: number;", - "mainBuggyLine": "2431" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2439", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "exclusionObjects?: string;", - "mainBuggyLine": "2439" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2439", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "exclusionObjects?: string;", - "mainBuggyLine": "2439" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2448", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface WifiEapConfig", - "mainBuggyLine": "2448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2454", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "eapMethod: EapMethod;", - "mainBuggyLine": "2454" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2454", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "eapMethod: EapMethod;", - "mainBuggyLine": "2454" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2461", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "phase2Method: Phase2Method;", - "mainBuggyLine": "2461" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2461", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "phase2Method: Phase2Method;", - "mainBuggyLine": "2461" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2468", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "identity: string;", - "mainBuggyLine": "2468" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2468", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "identity: string;", - "mainBuggyLine": "2468" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2475", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "anonymousIdentity: string;", - "mainBuggyLine": "2475" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2475", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "anonymousIdentity: string;", - "mainBuggyLine": "2475" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2482", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "password: string;", - "mainBuggyLine": "2482" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2482", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "password: string;", - "mainBuggyLine": "2482" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2490", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "caCertAlias: string;", - "mainBuggyLine": "2490" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2497", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "caPath: string;", - "mainBuggyLine": "2497" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2497", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "caPath: string;", - "mainBuggyLine": "2497" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2505", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "clientCertAlias: string;", - "mainBuggyLine": "2505" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2512", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "certEntry: Uint8Array;", - "mainBuggyLine": "2512" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2512", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "certEntry: Uint8Array;", - "mainBuggyLine": "2512" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2519", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "certPassword: string;", - "mainBuggyLine": "2519" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2519", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "certPassword: string;", - "mainBuggyLine": "2519" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2526", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "altSubjectMatch: string;", - "mainBuggyLine": "2526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2526", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "altSubjectMatch: string;", - "mainBuggyLine": "2526" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2533", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "domainSuffixMatch: string;", - "mainBuggyLine": "2533" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2533", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "domainSuffixMatch: string;", - "mainBuggyLine": "2533" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2540", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "realm: string;", - "mainBuggyLine": "2540" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2540", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "realm: string;", - "mainBuggyLine": "2540" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2547", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "plmn: string;", - "mainBuggyLine": "2547" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2547", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "plmn: string;", - "mainBuggyLine": "2547" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2555", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "eapSubId: number;", - "mainBuggyLine": "2555" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2584", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ssid: string;", - "mainBuggyLine": "2584" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2597", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bssid?: string;", - "mainBuggyLine": "2597" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2625", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "preSharedKey: string;", - "mainBuggyLine": "2625" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2632", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isHiddenSsid?: boolean;", - "mainBuggyLine": "2632" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2632", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isHiddenSsid?: boolean;", - "mainBuggyLine": "2632" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2646", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "securityType: WifiSecurityType;", - "mainBuggyLine": "2646" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2654", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "creatorUid?: number;", - "mainBuggyLine": "2654" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2654", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "creatorUid?: number;", - "mainBuggyLine": "2654" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2662", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "disableReason?: number;", - "mainBuggyLine": "2662" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2662", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "disableReason?: number;", - "mainBuggyLine": "2662" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2670", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "netId?: number;", - "mainBuggyLine": "2670" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2670", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "netId?: number;", - "mainBuggyLine": "2670" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2678", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "randomMacType?: number;", - "mainBuggyLine": "2678" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2678", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "randomMacType?: number;", - "mainBuggyLine": "2678" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2686", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "randomMacAddr?: string;", - "mainBuggyLine": "2686" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2686", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "randomMacAddr?: string;", - "mainBuggyLine": "2686" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2694", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ipType?: IpType;", - "mainBuggyLine": "2694" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2694", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ipType?: IpType;", - "mainBuggyLine": "2694" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2702", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "staticIp?: IpConfig;", - "mainBuggyLine": "2702" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2702", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "staticIp?: IpConfig;", - "mainBuggyLine": "2702" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2710", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "eapConfig?: WifiEapConfig;", - "mainBuggyLine": "2710" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2718", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "proxyConfig?: WifiProxyConfig;", - "mainBuggyLine": "2718" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2718", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "proxyConfig?: WifiProxyConfig;", - "mainBuggyLine": "2718" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2728", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface IpConfig", - "mainBuggyLine": "2728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2735", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ipAddress: number;", - "mainBuggyLine": "2735" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2735", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ipAddress: number;", - "mainBuggyLine": "2735" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2743", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "gateway: number;", - "mainBuggyLine": "2743" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2743", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "gateway: number;", - "mainBuggyLine": "2743" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2751", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "prefixLength: number;", - "mainBuggyLine": "2751" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2751", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "prefixLength: number;", - "mainBuggyLine": "2751" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2759", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dnsServers: number[];", - "mainBuggyLine": "2759" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2759", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "dnsServers: number[];", - "mainBuggyLine": "2759" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2767", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "domains: Array;", - "mainBuggyLine": "2767" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2767", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "domains: Array;", - "mainBuggyLine": "2767" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2776", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface WifiInfoElem", - "mainBuggyLine": "2776" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2783", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "eid: number;", - "mainBuggyLine": "2783" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2783", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "eid: number;", - "mainBuggyLine": "2783" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2791", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "content: Uint8Array;", - "mainBuggyLine": "2791" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2791", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "content: Uint8Array;", - "mainBuggyLine": "2791" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2800", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum WifiChannelWidth", - "mainBuggyLine": "2800" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2807", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIDTH_20MHZ = 0", - "mainBuggyLine": "2807" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2815", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIDTH_40MHZ = 1", - "mainBuggyLine": "2815" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2823", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIDTH_80MHZ = 2", - "mainBuggyLine": "2823" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2831", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIDTH_160MHZ = 3", - "mainBuggyLine": "2831" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2839", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIDTH_80MHZ_PLUS = 4", - "mainBuggyLine": "2839" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2847", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIDTH_INVALID", - "mainBuggyLine": "2847" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2877", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ssid: string;", - "mainBuggyLine": "2877" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2892", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bssid: string;", - "mainBuggyLine": "2892" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2915", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "capabilities: string;", - "mainBuggyLine": "2915" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2915", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "capabilities: string;", - "mainBuggyLine": "2915" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2930", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "securityType: WifiSecurityType;", - "mainBuggyLine": "2930" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2945", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rssi: number;", - "mainBuggyLine": "2945" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2953", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "band: number;", - "mainBuggyLine": "2953" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2953", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "band: number;", - "mainBuggyLine": "2953" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2968", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "frequency: number;", - "mainBuggyLine": "2968" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2976", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "channelWidth: number;", - "mainBuggyLine": "2976" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2976", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "channelWidth: number;", - "mainBuggyLine": "2976" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2984", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "centerFrequency0: number;", - "mainBuggyLine": "2984" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2984", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "centerFrequency0: number;", - "mainBuggyLine": "2984" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2992", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "centerFrequency1: number;", - "mainBuggyLine": "2992" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "2992", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "centerFrequency1: number;", - "mainBuggyLine": "2992" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3000", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "infoElems: Array;", - "mainBuggyLine": "3000" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3000", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "infoElems: Array;", - "mainBuggyLine": "3000" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3008", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "timestamp: number;", - "mainBuggyLine": "3008" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3008", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "timestamp: number;", - "mainBuggyLine": "3008" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3016", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "supportedWifiCategory: WifiCategory;", - "mainBuggyLine": "3016" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3016", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "supportedWifiCategory: WifiCategory;", - "mainBuggyLine": "3016" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3024", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isHiLinkNetwork: boolean;", - "mainBuggyLine": "3024" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3024", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isHiLinkNetwork: boolean;", - "mainBuggyLine": "3024" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3047", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_SEC_TYPE_INVALID = 0", - "mainBuggyLine": "3047" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3070", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_SEC_TYPE_WEP = 2", - "mainBuggyLine": "3070" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3078", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_SEC_TYPE_PSK = 3", - "mainBuggyLine": "3078" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3086", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_SEC_TYPE_SAE = 4", - "mainBuggyLine": "3086" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3094", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_SEC_TYPE_EAP = 5", - "mainBuggyLine": "3094" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3102", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_SEC_TYPE_EAP_SUITE_B = 6", - "mainBuggyLine": "3102" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3110", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_SEC_TYPE_OWE = 7", - "mainBuggyLine": "3110" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3118", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_SEC_TYPE_WAPI_CERT = 8", - "mainBuggyLine": "3118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3126", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_SEC_TYPE_WAPI_PSK = 9", - "mainBuggyLine": "3126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3135", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum WifiBandType", - "mainBuggyLine": "3135" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3142", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_BAND_NONE", - "mainBuggyLine": "3142" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3150", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_BAND_2G", - "mainBuggyLine": "3150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3158", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_BAND_5G", - "mainBuggyLine": "3158" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3166", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_BAND_6G", - "mainBuggyLine": "3166" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3174", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_BAND_60G", - "mainBuggyLine": "3174" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3183", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum WifiStandard", - "mainBuggyLine": "3183" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3189", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_STANDARD_UNDEFINED", - "mainBuggyLine": "3189" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3196", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_STANDARD_11A", - "mainBuggyLine": "3196" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3203", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_STANDARD_11B", - "mainBuggyLine": "3203" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3210", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_STANDARD_11G", - "mainBuggyLine": "3210" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3217", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_STANDARD_11N", - "mainBuggyLine": "3217" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3224", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_STANDARD_11AC", - "mainBuggyLine": "3224" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3231", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_STANDARD_11AX", - "mainBuggyLine": "3231" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3238", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIFI_STANDARD_11AD", - "mainBuggyLine": "3238" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3268", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ssid: string;", - "mainBuggyLine": "3268" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3281", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bssid: string;", - "mainBuggyLine": "3281" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3289", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "networkId: number;", - "mainBuggyLine": "3289" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3289", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "networkId: number;", - "mainBuggyLine": "3289" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3302", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rssi: number;", - "mainBuggyLine": "3302" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3309", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "band: number;", - "mainBuggyLine": "3309" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3309", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "band: number;", - "mainBuggyLine": "3309" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3316", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "linkSpeed: number;", - "mainBuggyLine": "3316" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3316", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "linkSpeed: number;", - "mainBuggyLine": "3316" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3323", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "rxLinkSpeed: number;", - "mainBuggyLine": "3323" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3323", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rxLinkSpeed: number;", - "mainBuggyLine": "3323" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3330", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maxSupportedTxLinkSpeed: number;", - "mainBuggyLine": "3330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3330", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "maxSupportedTxLinkSpeed: number;", - "mainBuggyLine": "3330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3337", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maxSupportedRxLinkSpeed: number;", - "mainBuggyLine": "3337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3337", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "maxSupportedRxLinkSpeed: number;", - "mainBuggyLine": "3337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3350", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "frequency: number;", - "mainBuggyLine": "3350" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3357", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isHidden: boolean;", - "mainBuggyLine": "3357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3357", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isHidden: boolean;", - "mainBuggyLine": "3357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3364", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isRestricted: boolean;", - "mainBuggyLine": "3364" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3364", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isRestricted: boolean;", - "mainBuggyLine": "3364" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3372", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "chload: number;", - "mainBuggyLine": "3372" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3372", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "chload: number;", - "mainBuggyLine": "3372" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3380", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "snr: number;", - "mainBuggyLine": "3380" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3380", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "snr: number;", - "mainBuggyLine": "3380" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3387", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "macType: number;", - "mainBuggyLine": "3387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3387", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "macType: number;", - "mainBuggyLine": "3387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3394", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "macAddress: string;", - "mainBuggyLine": "3394" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3394", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "macAddress: string;", - "mainBuggyLine": "3394" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3401", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ipAddress: number;", - "mainBuggyLine": "3401" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3401", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ipAddress: number;", - "mainBuggyLine": "3401" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3409", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "suppState: SuppState;", - "mainBuggyLine": "3409" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3409", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "suppState: SuppState;", - "mainBuggyLine": "3409" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3416", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "connState: ConnState;", - "mainBuggyLine": "3416" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3416", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "connState: ConnState;", - "mainBuggyLine": "3416" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3423", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "channelWidth: WifiChannelWidth;", - "mainBuggyLine": "3423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3423", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "channelWidth: WifiChannelWidth;", - "mainBuggyLine": "3423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3430", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "wifiStandard: WifiStandard;", - "mainBuggyLine": "3430" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3430", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "wifiStandard: WifiStandard;", - "mainBuggyLine": "3430" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3438", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "supportedWifiCategory: WifiCategory;", - "mainBuggyLine": "3438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3438", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "supportedWifiCategory: WifiCategory;", - "mainBuggyLine": "3438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3446", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isHiLinkNetwork: boolean;", - "mainBuggyLine": "3446" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3446", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isHiLinkNetwork: boolean;", - "mainBuggyLine": "3446" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3455", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface IpInfo", - "mainBuggyLine": "3455" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3462", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ipAddress: number;", - "mainBuggyLine": "3462" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3462", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ipAddress: number;", - "mainBuggyLine": "3462" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3470", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "gateway: number;", - "mainBuggyLine": "3470" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3470", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "gateway: number;", - "mainBuggyLine": "3470" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3478", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "netmask: number;", - "mainBuggyLine": "3478" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3478", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "netmask: number;", - "mainBuggyLine": "3478" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3486", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "primaryDns: number;", - "mainBuggyLine": "3486" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3486", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "primaryDns: number;", - "mainBuggyLine": "3486" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3494", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "secondDns: number;", - "mainBuggyLine": "3494" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3494", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "secondDns: number;", - "mainBuggyLine": "3494" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3501", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "serverIp: number;", - "mainBuggyLine": "3501" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3501", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "serverIp: number;", - "mainBuggyLine": "3501" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3508", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "leaseDuration: number;", - "mainBuggyLine": "3508" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3508", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "leaseDuration: number;", - "mainBuggyLine": "3508" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3517", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Ipv6Info", - "mainBuggyLine": "3517" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3524", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "linkIpv6Address: string;", - "mainBuggyLine": "3524" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3524", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "linkIpv6Address: string;", - "mainBuggyLine": "3524" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3532", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "globalIpv6Address: string;", - "mainBuggyLine": "3532" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3532", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "globalIpv6Address: string;", - "mainBuggyLine": "3532" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3540", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "randomGlobalIpv6Address: string;", - "mainBuggyLine": "3540" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3540", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "randomGlobalIpv6Address: string;", - "mainBuggyLine": "3540" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3548", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "gateway: string;", - "mainBuggyLine": "3548" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3548", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "gateway: string;", - "mainBuggyLine": "3548" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3556", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "netmask: string;", - "mainBuggyLine": "3556" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3556", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "netmask: string;", - "mainBuggyLine": "3556" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3564", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "primaryDNS: string;", - "mainBuggyLine": "3564" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3564", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "primaryDNS: string;", - "mainBuggyLine": "3564" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3572", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "secondDNS: string;", - "mainBuggyLine": "3572" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3572", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "secondDNS: string;", - "mainBuggyLine": "3572" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3582", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface HotspotConfig", - "mainBuggyLine": "3582" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3589", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ssid: string;", - "mainBuggyLine": "3589" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3589", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ssid: string;", - "mainBuggyLine": "3589" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3597", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "securityType: WifiSecurityType;", - "mainBuggyLine": "3597" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3597", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "securityType: WifiSecurityType;", - "mainBuggyLine": "3597" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3605", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "band: number;", - "mainBuggyLine": "3605" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3605", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "band: number;", - "mainBuggyLine": "3605" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3613", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "channel?: number;", - "mainBuggyLine": "3613" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3613", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "channel?: number;", - "mainBuggyLine": "3613" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3621", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "preSharedKey: string;", - "mainBuggyLine": "3621" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3621", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "preSharedKey: string;", - "mainBuggyLine": "3621" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3629", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maxConn: number;", - "mainBuggyLine": "3629" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3629", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "maxConn: number;", - "mainBuggyLine": "3629" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3637", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ipAddress?: string;", - "mainBuggyLine": "3637" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3637", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ipAddress?: string;", - "mainBuggyLine": "3637" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3647", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface StationInfo", - "mainBuggyLine": "3647" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3654", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "3654" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3654", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "3654" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3662", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "macAddress: string;", - "mainBuggyLine": "3662" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3662", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "macAddress: string;", - "mainBuggyLine": "3662" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3671", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "macAddressType?: DeviceAddressType;", - "mainBuggyLine": "3671" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3679", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ipAddress: string;", - "mainBuggyLine": "3679" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3679", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ipAddress: string;", - "mainBuggyLine": "3679" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3690", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum IpType", - "mainBuggyLine": "3690" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3697", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "STATIC", - "mainBuggyLine": "3697" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3705", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DHCP", - "mainBuggyLine": "3705" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3713", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "UNKNOWN", - "mainBuggyLine": "3713" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3724", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum SuppState", - "mainBuggyLine": "3724" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3731", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DISCONNECTED", - "mainBuggyLine": "3731" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3739", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INTERFACE_DISABLED", - "mainBuggyLine": "3739" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3747", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INACTIVE", - "mainBuggyLine": "3747" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3755", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCANNING", - "mainBuggyLine": "3755" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3763", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUTHENTICATING", - "mainBuggyLine": "3763" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3771", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ASSOCIATING", - "mainBuggyLine": "3771" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3779", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ASSOCIATED", - "mainBuggyLine": "3779" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3787", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FOUR_WAY_HANDSHAKE", - "mainBuggyLine": "3787" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3795", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GROUP_HANDSHAKE", - "mainBuggyLine": "3795" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3803", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "COMPLETED", - "mainBuggyLine": "3803" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3811", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "UNINITIALIZED", - "mainBuggyLine": "3811" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3819", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INVALID", - "mainBuggyLine": "3819" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3829", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum ConnState", - "mainBuggyLine": "3829" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3836", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SCANNING", - "mainBuggyLine": "3836" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3844", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CONNECTING", - "mainBuggyLine": "3844" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3852", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUTHENTICATING", - "mainBuggyLine": "3852" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3860", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OBTAINING_IPADDR", - "mainBuggyLine": "3860" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3868", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CONNECTED", - "mainBuggyLine": "3868" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3876", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DISCONNECTING", - "mainBuggyLine": "3876" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3884", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DISCONNECTED", - "mainBuggyLine": "3884" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3892", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "UNKNOWN", - "mainBuggyLine": "3892" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3902", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface WifiP2pDevice", - "mainBuggyLine": "3902" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3909", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deviceName: string;", - "mainBuggyLine": "3909" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3909", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceName: string;", - "mainBuggyLine": "3909" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3917", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deviceAddress: string;", - "mainBuggyLine": "3917" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3917", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceAddress: string;", - "mainBuggyLine": "3917" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3925", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deviceAddressType?: DeviceAddressType;", - "mainBuggyLine": "3925" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3933", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "primaryDeviceType: string;", - "mainBuggyLine": "3933" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3933", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "primaryDeviceType: string;", - "mainBuggyLine": "3933" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3941", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deviceStatus: P2pDeviceStatus;", - "mainBuggyLine": "3941" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3941", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceStatus: P2pDeviceStatus;", - "mainBuggyLine": "3941" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3949", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "groupCapabilities: number;", - "mainBuggyLine": "3949" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3949", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "groupCapabilities: number;", - "mainBuggyLine": "3949" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3959", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface WifiP2PConfig", - "mainBuggyLine": "3959" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3966", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deviceAddress: string;", - "mainBuggyLine": "3966" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3966", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceAddress: string;", - "mainBuggyLine": "3966" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3974", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "deviceAddressType?: DeviceAddressType;", - "mainBuggyLine": "3974" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3983", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "netId: number;", - "mainBuggyLine": "3983" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3983", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "netId: number;", - "mainBuggyLine": "3983" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3991", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "passphrase: string;", - "mainBuggyLine": "3991" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3991", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "passphrase: string;", - "mainBuggyLine": "3991" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3998", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "groupName: string;", - "mainBuggyLine": "3998" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "3998", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "groupName: string;", - "mainBuggyLine": "3998" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4005", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "goBand: GroupOwnerBand;", - "mainBuggyLine": "4005" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4005", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "goBand: GroupOwnerBand;", - "mainBuggyLine": "4005" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4015", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface WifiP2pGroupInfo", - "mainBuggyLine": "4015" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4021", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isP2pGo: boolean;", - "mainBuggyLine": "4021" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4021", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isP2pGo: boolean;", - "mainBuggyLine": "4021" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4028", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ownerInfo: WifiP2pDevice;", - "mainBuggyLine": "4028" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4028", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ownerInfo: WifiP2pDevice;", - "mainBuggyLine": "4028" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4035", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "passphrase: string;", - "mainBuggyLine": "4035" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4035", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "passphrase: string;", - "mainBuggyLine": "4035" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4042", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "interface: string;", - "mainBuggyLine": "4042" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4042", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "interface: string;", - "mainBuggyLine": "4042" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4049", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "groupName: string;", - "mainBuggyLine": "4049" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4049", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "groupName: string;", - "mainBuggyLine": "4049" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4056", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "networkId: number;", - "mainBuggyLine": "4056" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4056", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "networkId: number;", - "mainBuggyLine": "4056" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4063", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "frequency: number;", - "mainBuggyLine": "4063" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4063", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "frequency: number;", - "mainBuggyLine": "4063" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4070", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "clientDevices: WifiP2pDevice[];", - "mainBuggyLine": "4070" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4070", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "clientDevices: WifiP2pDevice[];", - "mainBuggyLine": "4070" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4077", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "goIpAddress: string;", - "mainBuggyLine": "4077" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4077", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "goIpAddress: string;", - "mainBuggyLine": "4077" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4087", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum P2pConnectState", - "mainBuggyLine": "4087" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4093", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DISCONNECTED = 0", - "mainBuggyLine": "4093" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4100", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CONNECTED = 1", - "mainBuggyLine": "4100" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4110", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface WifiP2pLinkedInfo", - "mainBuggyLine": "4110" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4116", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "connectState: P2pConnectState;", - "mainBuggyLine": "4116" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4116", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "connectState: P2pConnectState;", - "mainBuggyLine": "4116" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4123", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isGroupOwner: boolean;", - "mainBuggyLine": "4123" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4123", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isGroupOwner: boolean;", - "mainBuggyLine": "4123" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4131", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "groupOwnerAddr: string;", - "mainBuggyLine": "4131" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4131", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "groupOwnerAddr: string;", - "mainBuggyLine": "4131" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4141", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum P2pDeviceStatus", - "mainBuggyLine": "4141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4147", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "CONNECTED = 0", - "mainBuggyLine": "4147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4154", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "INVITED = 1", - "mainBuggyLine": "4154" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4161", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FAILED = 2", - "mainBuggyLine": "4161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4168", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AVAILABLE = 3", - "mainBuggyLine": "4168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4175", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "UNAVAILABLE = 4", - "mainBuggyLine": "4175" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4185", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum GroupOwnerBand", - "mainBuggyLine": "4185" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4191", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GO_BAND_AUTO = 0", - "mainBuggyLine": "4191" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4198", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GO_BAND_2GHZ = 1", - "mainBuggyLine": "4198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "4205", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "GO_BAND_5GHZ = 2", - "mainBuggyLine": "4205" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1469", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_wifiStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'wifiStateChange', callback: Callback): void;", - "mainBuggyLine": "1469" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1504", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_wifiStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'wifiStateChange', callback?: Callback): void;", - "mainBuggyLine": "1504" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1535", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_wifiConnectionChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'wifiConnectionChange', callback: Callback): void;", - "mainBuggyLine": "1535" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1568", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_wifiConnectionChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'wifiConnectionChange', callback?: Callback): void;", - "mainBuggyLine": "1568" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1598", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_wifiScanStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function on(type: 'wifiScanStateChange', callback: Callback): void;", - "mainBuggyLine": "1598" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.wifiManager.d.ts", - "codeContextStaerLine": "1630", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_wifiScanStateChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "function off(type: 'wifiScanStateChange', callback?: Callback): void;", - "mainBuggyLine": "1630" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManagerExt.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare namespace wifiManagerExt", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManagerExt.d.ts", - "codeContextStaerLine": "45", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function enableHotspot(): void;", - "mainBuggyLine": "45" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManagerExt.d.ts", - "codeContextStaerLine": "58", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function disableHotspot(): void;", - "mainBuggyLine": "58" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManagerExt.d.ts", - "codeContextStaerLine": "119", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "function setPowerMode(mode: PowerMode): void;", - "mainBuggyLine": "119" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManagerExt.d.ts", - "codeContextStaerLine": "119", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "function setPowerMode(mode: PowerMode): void;", - "mainBuggyLine": "119" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "62", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum WindowType", - "mainBuggyLine": "62" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "70", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_APP", - "mainBuggyLine": "70" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "78", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_SYSTEM_ALERT", - "mainBuggyLine": "78" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "87", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_INPUT_METHOD", - "mainBuggyLine": "87" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "96", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_STATUS_BAR", - "mainBuggyLine": "96" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "105", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_PANEL", - "mainBuggyLine": "105" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "114", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_KEYGUARD", - "mainBuggyLine": "114" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "123", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_VOLUME_OVERLAY", - "mainBuggyLine": "123" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "132", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_NAVIGATION_BAR", - "mainBuggyLine": "132" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "141", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_FLOAT", - "mainBuggyLine": "141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "141", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "TYPE_FLOAT", - "mainBuggyLine": "141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "150", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_WALLPAPER", - "mainBuggyLine": "150" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "159", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_DESKTOP", - "mainBuggyLine": "159" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "168", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_LAUNCHER_RECENT", - "mainBuggyLine": "168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "177", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_LAUNCHER_DOCK", - "mainBuggyLine": "177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "186", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_VOICE_INTERACTION", - "mainBuggyLine": "186" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "195", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_POINTER", - "mainBuggyLine": "195" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "204", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_FLOAT_CAMERA", - "mainBuggyLine": "204" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "212", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_DIALOG", - "mainBuggyLine": "212" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "221", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_SCREENSHOT", - "mainBuggyLine": "221" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "230", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_SYSTEM_TOAST", - "mainBuggyLine": "230" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "239", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_DIVIDER", - "mainBuggyLine": "239" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "248", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_GLOBAL_SEARCH", - "mainBuggyLine": "248" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "257", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "TYPE_HANDWRITE", - "mainBuggyLine": "257" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "402", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum WindowMode", - "mainBuggyLine": "402" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "410", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "UNDEFINED = 1", - "mainBuggyLine": "410" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "418", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FULLSCREEN", - "mainBuggyLine": "418" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "426", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "PRIMARY", - "mainBuggyLine": "426" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "434", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SECONDARY", - "mainBuggyLine": "434" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "442", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FLOATING", - "mainBuggyLine": "442" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "453", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum WindowLayoutMode", - "mainBuggyLine": "453" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "461", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WINDOW_LAYOUT_MODE_CASCADE", - "mainBuggyLine": "461" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "469", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WINDOW_LAYOUT_MODE_TILE", - "mainBuggyLine": "469" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "479", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum WindowStatusType", - "mainBuggyLine": "479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "486", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "UNDEFINED = 0", - "mainBuggyLine": "486" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "493", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FULL_SCREEN", - "mainBuggyLine": "493" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "500", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MAXIMIZE", - "mainBuggyLine": "500" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "507", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "MINIMIZE", - "mainBuggyLine": "507" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "514", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FLOATING", - "mainBuggyLine": "514" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "521", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "SPLIT_SCREEN", - "mainBuggyLine": "521" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "553", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "statusBarColor?: string;", - "mainBuggyLine": "553" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "568", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isStatusBarLightIcon?: boolean;", - "mainBuggyLine": "568" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "583", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "statusBarContentColor?: string;", - "mainBuggyLine": "583" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "598", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "navigationBarColor?: string;", - "mainBuggyLine": "598" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "613", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isNavigationBarLightIcon?: boolean;", - "mainBuggyLine": "613" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "628", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "navigationBarContentColor?: string;", - "mainBuggyLine": "628" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "637", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "enableStatusBarAnimation?: boolean;", - "mainBuggyLine": "637" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "646", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "enableNavigationBarAnimation?: boolean;", - "mainBuggyLine": "646" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "657", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface SystemBarRegionTint", - "mainBuggyLine": "657" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "665", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type: WindowType;", - "mainBuggyLine": "665" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "665", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: WindowType;", - "mainBuggyLine": "665" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "674", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isEnable?: boolean;", - "mainBuggyLine": "674" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "674", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isEnable?: boolean;", - "mainBuggyLine": "674" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "683", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "region?: Rect;", - "mainBuggyLine": "683" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "683", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "region?: Rect;", - "mainBuggyLine": "683" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "692", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "backgroundColor?: string;", - "mainBuggyLine": "692" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "692", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "backgroundColor?: string;", - "mainBuggyLine": "692" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "701", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "contentColor?: string;", - "mainBuggyLine": "701" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "701", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "contentColor?: string;", - "mainBuggyLine": "701" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "712", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface SystemBarTintState", - "mainBuggyLine": "712" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "720", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "displayId: number;", - "mainBuggyLine": "720" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "720", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "displayId: number;", - "mainBuggyLine": "720" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "728", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "regionTint: Array;", - "mainBuggyLine": "728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "728", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "regionTint: Array;", - "mainBuggyLine": "728" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "778", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "left: number;", - "mainBuggyLine": "778" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "801", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "top: number;", - "mainBuggyLine": "801" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "824", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "width: number;", - "mainBuggyLine": "824" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "847", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "height: number;", - "mainBuggyLine": "847" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1132", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "drawableRect: Rect;", - "mainBuggyLine": "1132" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1141", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "type: WindowType;", - "mainBuggyLine": "1141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1184", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "focusable: boolean;", - "mainBuggyLine": "1184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1193", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "touchable: boolean;", - "mainBuggyLine": "1193" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1228", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dimBehindValue: number;", - "mainBuggyLine": "1228" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1262", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isPrivacyMode: boolean;", - "mainBuggyLine": "1262" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1272", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isRoundCorner: boolean;", - "mainBuggyLine": "1272" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1281", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isTransparent: boolean;", - "mainBuggyLine": "1281" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1290", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "id: number;", - "mainBuggyLine": "1290" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1308", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum ColorSpace", - "mainBuggyLine": "1308" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1322", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "DEFAULT", - "mainBuggyLine": "1322" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1336", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "WIDE_GAMUT", - "mainBuggyLine": "1336" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1346", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface ScaleOptions", - "mainBuggyLine": "1346" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1354", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "x?: number;", - "mainBuggyLine": "1354" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1354", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "x?: number;", - "mainBuggyLine": "1354" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1363", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "y?: number;", - "mainBuggyLine": "1363" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1363", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "y?: number;", - "mainBuggyLine": "1363" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1372", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pivotX?: number;", - "mainBuggyLine": "1372" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1372", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "pivotX?: number;", - "mainBuggyLine": "1372" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1381", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pivotY?: number;", - "mainBuggyLine": "1381" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1381", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "pivotY?: number;", - "mainBuggyLine": "1381" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1392", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface RotateOptions", - "mainBuggyLine": "1392" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1401", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "x?: number;", - "mainBuggyLine": "1401" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1411", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "y?: number;", - "mainBuggyLine": "1411" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1421", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "z?: number;", - "mainBuggyLine": "1421" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1431", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pivotX?: number;", - "mainBuggyLine": "1431" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1441", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "pivotY?: number;", - "mainBuggyLine": "1441" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1452", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface TranslateOptions", - "mainBuggyLine": "1452" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1461", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "x?: number;", - "mainBuggyLine": "1461" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1471", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "y?: number;", - "mainBuggyLine": "1471" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1481", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "z?: number;", - "mainBuggyLine": "1481" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1492", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface TransitionContext", - "mainBuggyLine": "1492" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1501", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "toWindow: Window;", - "mainBuggyLine": "1501" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1513", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "completeTransition(isCompleted: boolean): void;", - "mainBuggyLine": "1513" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1524", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface TransitionController", - "mainBuggyLine": "1524" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1535", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "animationForShown(context: TransitionContext): void;", - "mainBuggyLine": "1535" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1546", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "animationForHidden(context: TransitionContext): void;", - "mainBuggyLine": "1546" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1556", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface Configuration", - "mainBuggyLine": "1556" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1563", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "1563" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1563", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "1563" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1572", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "windowType: WindowType;", - "mainBuggyLine": "1572" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1581", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ctx?: BaseContext;", - "mainBuggyLine": "1581" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1590", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "displayId?: number;", - "mainBuggyLine": "1590" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1599", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "parentId?: number;", - "mainBuggyLine": "1599" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1608", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "decorEnabled?: boolean;", - "mainBuggyLine": "1608" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1617", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "title?: string;", - "mainBuggyLine": "1617" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1627", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface WindowLimits", - "mainBuggyLine": "1627" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1636", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maxWidth?: number;", - "mainBuggyLine": "1636" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1645", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maxHeight?: number;", - "mainBuggyLine": "1645" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1654", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "minWidth?: number;", - "mainBuggyLine": "1654" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1663", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "minHeight?: number;", - "mainBuggyLine": "1663" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1673", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface TitleButtonRect", - "mainBuggyLine": "1673" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1682", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "right: number;", - "mainBuggyLine": "1682" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1691", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "top: number;", - "mainBuggyLine": "1691" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1700", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "width: number;", - "mainBuggyLine": "1700" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1709", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "height: number;", - "mainBuggyLine": "1709" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1860", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createWindow(config: Configuration, callback: AsyncCallback): void;", - "mainBuggyLine": "1860" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1860", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function createWindow(config: Configuration, callback: AsyncCallback): void;", - "mainBuggyLine": "1860" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1877", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function createWindow(config: Configuration): Promise;", - "mainBuggyLine": "1877" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1877", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "function createWindow(config: Configuration): Promise;", - "mainBuggyLine": "1877" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1891", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function create(id: string, type: WindowType, callback: AsyncCallback): void;", - "mainBuggyLine": "1891" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1905", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function create(id: string, type: WindowType): Promise;", - "mainBuggyLine": "1905" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1919", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function create(ctx: BaseContext, id: string, type: WindowType): Promise;", - "mainBuggyLine": "1919" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1933", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function create(ctx: BaseContext, id: string, type: WindowType, callback: AsyncCallback): void;", - "mainBuggyLine": "1933" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1945", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function find(id: string, callback: AsyncCallback): void;", - "mainBuggyLine": "1945" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "1957", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function find(id: string): Promise;", - "mainBuggyLine": "1957" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2007", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getTopWindow(callback: AsyncCallback): void;", - "mainBuggyLine": "2007" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2019", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getTopWindow(): Promise;", - "mainBuggyLine": "2019" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2031", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getTopWindow(ctx: BaseContext): Promise;", - "mainBuggyLine": "2031" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2043", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getTopWindow(ctx: BaseContext, callback: AsyncCallback): void;", - "mainBuggyLine": "2043" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2070", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getLastWindow(ctx: BaseContext, callback: AsyncCallback): void;", - "mainBuggyLine": "2070" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2097", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getLastWindow(ctx: BaseContext): Promise;", - "mainBuggyLine": "2097" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2112", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function minimizeAll(id: number, callback: AsyncCallback): void;", - "mainBuggyLine": "2112" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2127", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function minimizeAll(id: number): Promise;", - "mainBuggyLine": "2127" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2138", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function toggleShownStateForAllAppWindows(callback: AsyncCallback): void;", - "mainBuggyLine": "2138" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2149", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function toggleShownStateForAllAppWindows(): Promise;", - "mainBuggyLine": "2149" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2164", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setWindowLayoutMode(mode: WindowLayoutMode, callback: AsyncCallback): void;", - "mainBuggyLine": "2164" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2179", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setWindowLayoutMode(mode: WindowLayoutMode): Promise;", - "mainBuggyLine": "2179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2194", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setGestureNavigationEnabled(enable: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "2194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2209", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setGestureNavigationEnabled(enable: boolean): Promise;", - "mainBuggyLine": "2209" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2225", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setWaterMarkImage(pixelMap: image.PixelMap, enable: boolean): Promise;", - "mainBuggyLine": "2225" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2241", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function setWaterMarkImage(pixelMap: image.PixelMap, enable: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "2241" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2258", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function shiftAppWindowFocus(sourceWindowId: number, targetWindowId: number): Promise;", - "mainBuggyLine": "2258" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2273", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function getSnapshot(windowId: number): Promise;", - "mainBuggyLine": "2273" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2287", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'systemBarTintChange', callback: Callback): void;", - "mainBuggyLine": "2287" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2300", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'systemBarTintChange', callback?: Callback): void;", - "mainBuggyLine": "2300" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2316", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'gestureNavigationEnabledChange', callback: Callback): void;", - "mainBuggyLine": "2316" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2331", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'gestureNavigationEnabledChange', callback?: Callback): void;", - "mainBuggyLine": "2331" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2344", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function on(type: 'waterMarkFlagChange', callback: Callback): void;", - "mainBuggyLine": "2344" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2357", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function off(type: 'waterMarkFlagChange', callback?: Callback): void;", - "mainBuggyLine": "2357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2396", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "UNSPECIFIED = 0", - "mainBuggyLine": "2396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2511", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUTO_ROTATION_PORTRAIT = 6", - "mainBuggyLine": "2511" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2549", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUTO_ROTATION_PORTRAIT_RESTRICTED = 9", - "mainBuggyLine": "2549" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2557", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUTO_ROTATION_LANDSCAPE_RESTRICTED = 10", - "mainBuggyLine": "2557" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2565", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "LOCKED = 11", - "mainBuggyLine": "2565" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2573", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "AUTO_ROTATION_UNSPECIFIED = 12", - "mainBuggyLine": "2573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2581", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "USER_ROTATION_PORTRAIT = 13", - "mainBuggyLine": "2581" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2589", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "USER_ROTATION_LANDSCAPE = 14", - "mainBuggyLine": "2589" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2597", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "USER_ROTATION_PORTRAIT_INVERTED = 15", - "mainBuggyLine": "2597" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2605", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "USER_ROTATION_LANDSCAPE_INVERTED = 16", - "mainBuggyLine": "2605" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2613", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "FOLLOW_DESKTOP = 17", - "mainBuggyLine": "2613" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2624", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " enum BlurStyle", - "mainBuggyLine": "2624" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2632", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "OFF", - "mainBuggyLine": "2632" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2640", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "THIN", - "mainBuggyLine": "2640" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2648", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "REGULAR", - "mainBuggyLine": "2648" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2656", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "THICK", - "mainBuggyLine": "2656" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2762", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type SpecificSystemBar = 'status' | 'navigation' | 'navigationIndicator';", - "mainBuggyLine": "2762" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2790", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hide(callback: AsyncCallback): void;", - "mainBuggyLine": "2790" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2801", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hide(): Promise;", - "mainBuggyLine": "2801" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2814", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hideWithAnimation(callback: AsyncCallback): void;", - "mainBuggyLine": "2814" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2827", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hideWithAnimation(): Promise;", - "mainBuggyLine": "2827" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2838", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "show(callback: AsyncCallback): void;", - "mainBuggyLine": "2838" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2849", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "show(): Promise;", - "mainBuggyLine": "2849" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2920", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "showWithAnimation(callback: AsyncCallback): void;", - "mainBuggyLine": "2920" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2933", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "showWithAnimation(): Promise;", - "mainBuggyLine": "2933" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2944", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "destroy(callback: AsyncCallback): void;", - "mainBuggyLine": "2944" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "2955", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "destroy(): Promise;", - "mainBuggyLine": "2955" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3032", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "moveTo(x: number, y: number): Promise;", - "mainBuggyLine": "3032" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3045", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "moveTo(x: number, y: number, callback: AsyncCallback): void;", - "mainBuggyLine": "3045" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3146", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "resetSize(width: number, height: number): Promise;", - "mainBuggyLine": "3146" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3159", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "resetSize(width: number, height: number, callback: AsyncCallback): void;", - "mainBuggyLine": "3159" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3265", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setWindowType(type: WindowType): Promise;", - "mainBuggyLine": "3265" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3277", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setWindowType(type: WindowType, callback: AsyncCallback): void;", - "mainBuggyLine": "3277" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3293", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setWindowMode(mode: WindowMode): Promise;", - "mainBuggyLine": "3293" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3309", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setWindowMode(mode: WindowMode, callback: AsyncCallback): void;", - "mainBuggyLine": "3309" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3320", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getProperties(callback: AsyncCallback): void;", - "mainBuggyLine": "3320" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3331", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getProperties(): Promise;", - "mainBuggyLine": "3331" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3372", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAvoidArea(type: AvoidAreaType, callback: AsyncCallback): void;", - "mainBuggyLine": "3372" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3384", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAvoidArea(type: AvoidAreaType): Promise;", - "mainBuggyLine": "3384" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3437", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setFullScreen(isFullScreen: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "3437" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3449", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setFullScreen(isFullScreen: boolean): Promise;", - "mainBuggyLine": "3449" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3461", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setLayoutFullScreen(isLayoutFullScreen: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "3461" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3473", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setLayoutFullScreen(isLayoutFullScreen: boolean): Promise;", - "mainBuggyLine": "3473" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3535", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setSystemBarEnable(names: Array<'status' | 'navigation'>, callback: AsyncCallback): void;", - "mainBuggyLine": "3535" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3547", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setSystemBarEnable(names: Array<'status' | 'navigation'>): Promise;", - "mainBuggyLine": "3547" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3673", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setSystemBarProperties(systemBarProperties: SystemBarProperties, callback: AsyncCallback): void;", - "mainBuggyLine": "3673" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3685", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setSystemBarProperties(systemBarProperties: SystemBarProperties): Promise;", - "mainBuggyLine": "3685" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3955", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "loadContent(path: string, callback: AsyncCallback): void;", - "mainBuggyLine": "3955" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "3967", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "loadContent(path: string): Promise;", - "mainBuggyLine": "3967" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4142", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isShowing(callback: AsyncCallback): void;", - "mainBuggyLine": "4142" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4153", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isShowing(): Promise;", - "mainBuggyLine": "4153" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4242", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'systemAvoidAreaChange', callback: Callback): void;", - "mainBuggyLine": "4242" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4254", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'systemAvoidAreaChange', callback?: Callback): void;", - "mainBuggyLine": "4254" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4341", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'keyboardHeightChange', callback: Callback): void;", - "mainBuggyLine": "4341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4353", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'keyboardHeightChange', callback?: Callback): void;", - "mainBuggyLine": "4353" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4396", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'windowVisibilityChange', callback: Callback): void;", - "mainBuggyLine": "4396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4411", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'windowVisibilityChange', callback?: Callback): void;", - "mainBuggyLine": "4411" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4428", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'noInteractionDetected', timeout: number, callback: Callback): void;", - "mainBuggyLine": "4428" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4441", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'noInteractionDetected', callback?: Callback): void;", - "mainBuggyLine": "4441" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4454", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'screenshot', callback: Callback): void;", - "mainBuggyLine": "4454" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4466", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'screenshot', callback?: Callback): void;", - "mainBuggyLine": "4466" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4479", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'dialogTargetTouch', callback: Callback): void;", - "mainBuggyLine": "4479" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4492", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'dialogTargetTouch', callback?: Callback): void;", - "mainBuggyLine": "4492" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4556", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'windowStatusChange', callback: Callback): void;", - "mainBuggyLine": "4556" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4569", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'windowStatusChange', callback?: Callback): void;", - "mainBuggyLine": "4569" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4584", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bindDialogTarget(token: rpc.RemoteObject, deathCallback: Callback): Promise;", - "mainBuggyLine": "4584" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4599", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bindDialogTarget(token: rpc.RemoteObject, deathCallback: Callback, callback: AsyncCallback): void;", - "mainBuggyLine": "4599" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4614", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bindDialogTarget(requestInfo: dialogRequest.RequestInfo, deathCallback: Callback): Promise;", - "mainBuggyLine": "4614" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4629", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "bindDialogTarget(\n requestInfo: dialogRequest.RequestInfo,\n deathCallback: Callback,\n callback: AsyncCallback\n ): void;", - "mainBuggyLine": "4629" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4644", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isSupportWideGamut(): Promise;", - "mainBuggyLine": "4644" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4655", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isSupportWideGamut(callback: AsyncCallback): void;", - "mainBuggyLine": "4655" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4666", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isWindowSupportWideGamut(): Promise;", - "mainBuggyLine": "4666" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4676", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isWindowSupportWideGamut(callback: AsyncCallback): void;", - "mainBuggyLine": "4676" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4688", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setColorSpace(colorSpace: ColorSpace): Promise;", - "mainBuggyLine": "4688" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4700", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setColorSpace(colorSpace: ColorSpace, callback: AsyncCallback): void;", - "mainBuggyLine": "4700" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4727", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setWindowColorSpace(colorSpace: ColorSpace): Promise;", - "mainBuggyLine": "4727" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4754", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setWindowColorSpace(colorSpace: ColorSpace, callback: AsyncCallback): void;", - "mainBuggyLine": "4754" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4765", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getColorSpace(): Promise;", - "mainBuggyLine": "4765" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4776", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getColorSpace(callback: AsyncCallback): void;", - "mainBuggyLine": "4776" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4795", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getWindowColorSpace(): ColorSpace;", - "mainBuggyLine": "4795" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4807", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setBackgroundColor(color: string): Promise;", - "mainBuggyLine": "4807" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4819", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setBackgroundColor(color: string, callback: AsyncCallback): void;", - "mainBuggyLine": "4819" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4866", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setBrightness(brightness: number): Promise;", - "mainBuggyLine": "4866" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4878", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setBrightness(brightness: number, callback: AsyncCallback): void;", - "mainBuggyLine": "4878" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4896", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setTopmost(isTopmost: boolean): Promise;", - "mainBuggyLine": "4896" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "4989", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setDimBehind(dimBehindValue: number, callback: AsyncCallback): void;", - "mainBuggyLine": "4989" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5000", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setDimBehind(dimBehindValue: number): Promise;", - "mainBuggyLine": "5000" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5012", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setFocusable(isFocusable: boolean): Promise;", - "mainBuggyLine": "5012" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5024", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setFocusable(isFocusable: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "5024" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5038", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setWindowFocusable(isFocusable: boolean): Promise;", - "mainBuggyLine": "5038" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5052", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setWindowFocusable(isFocusable: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "5052" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5064", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setKeepScreenOn(isKeepScreenOn: boolean): Promise;", - "mainBuggyLine": "5064" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5076", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setKeepScreenOn(isKeepScreenOn: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "5076" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5172", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setWakeUpScreen(wakeUp: boolean): void;", - "mainBuggyLine": "5172" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5183", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setOutsideTouchable(touchable: boolean): Promise;", - "mainBuggyLine": "5183" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5194", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setOutsideTouchable(touchable: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "5194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5206", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setPrivacyMode(isPrivacyMode: boolean): Promise;", - "mainBuggyLine": "5206" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5218", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setPrivacyMode(isPrivacyMode: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "5218" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5289", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setSnapshotSkip(isSkip: boolean): void;", - "mainBuggyLine": "5289" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5301", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setTouchable(isTouchable: boolean): Promise;", - "mainBuggyLine": "5301" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5313", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setTouchable(isTouchable: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "5313" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5327", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setWindowTouchable(isTouchable: boolean): Promise;", - "mainBuggyLine": "5327" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5341", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setWindowTouchable(isTouchable: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "5341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5358", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setHandwritingFlag(enable: boolean): Promise;", - "mainBuggyLine": "5358" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5373", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setForbidSplitMove(isForbidSplitMove: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "5373" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5388", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setForbidSplitMove(isForbidSplitMove: boolean): Promise;", - "mainBuggyLine": "5388" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5398", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "snapshot(callback: AsyncCallback): void;", - "mainBuggyLine": "5398" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5408", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "snapshot(): Promise;", - "mainBuggyLine": "5408" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5423", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "opacity(opacity: number): void;", - "mainBuggyLine": "5423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5438", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "scale(scaleOptions: ScaleOptions): void;", - "mainBuggyLine": "5438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5453", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "rotate(rotateOptions: RotateOptions): void;", - "mainBuggyLine": "5453" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5468", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "translate(translateOptions: TranslateOptions): void;", - "mainBuggyLine": "5468" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5480", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getTransitionController(): TransitionController;", - "mainBuggyLine": "5480" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5495", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setBlur(radius: number): void;", - "mainBuggyLine": "5495" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5510", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setBackdropBlur(radius: number): void;", - "mainBuggyLine": "5510" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5525", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setBackdropBlurStyle(blurStyle: BlurStyle): void;", - "mainBuggyLine": "5525" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5543", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setShadow(radius: number, color?: string, offsetX?: number, offsetY?: number): void;", - "mainBuggyLine": "5543" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5558", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setCornerRadius(cornerRadius: number): void;", - "mainBuggyLine": "5558" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5573", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "raiseToAppTop(callback: AsyncCallback): void;", - "mainBuggyLine": "5573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5573", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "raiseToAppTop(callback: AsyncCallback): void;", - "mainBuggyLine": "5573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5588", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "raiseToAppTop(): Promise;", - "mainBuggyLine": "5588" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5588", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "raiseToAppTop(): Promise;", - "mainBuggyLine": "5588" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5603", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setAspectRatio(ratio: number, callback: AsyncCallback): void;", - "mainBuggyLine": "5603" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5618", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setAspectRatio(ratio: number): Promise;", - "mainBuggyLine": "5618" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5629", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "resetAspectRatio(callback: AsyncCallback): void;", - "mainBuggyLine": "5629" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5640", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "resetAspectRatio(): Promise;", - "mainBuggyLine": "5640" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5654", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setWaterMarkFlag(enable: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "5654" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5668", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setWaterMarkFlag(enable: boolean): Promise;", - "mainBuggyLine": "5668" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5686", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "raiseAboveTarget(windowId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "5686" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5704", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "raiseAboveTarget(windowId: number): Promise;", - "mainBuggyLine": "5704" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5723", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setRaiseByClickEnabled(enable: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "5723" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5742", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setRaiseByClickEnabled(enable: boolean): Promise;", - "mainBuggyLine": "5742" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5754", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "minimize(callback: AsyncCallback): void;", - "mainBuggyLine": "5754" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5766", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "minimize(): Promise;", - "mainBuggyLine": "5766" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5780", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "maximize(): Promise;", - "mainBuggyLine": "5780" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5813", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setResizeByDragEnabled(enable: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "5813" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5830", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setResizeByDragEnabled(enable: boolean): Promise;", - "mainBuggyLine": "5830" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5848", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hideNonSystemFloatingWindows(shouldHide: boolean, callback: AsyncCallback): void;", - "mainBuggyLine": "5848" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5866", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hideNonSystemFloatingWindows(shouldHide: boolean): Promise;", - "mainBuggyLine": "5866" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5877", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getWindowLimits(): WindowLimits;", - "mainBuggyLine": "5877" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5894", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setWindowLimits(windowLimits: WindowLimits): Promise;", - "mainBuggyLine": "5894" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5910", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setSingleFrameComposerEnabled(enable: boolean): Promise;", - "mainBuggyLine": "5910" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5924", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "keepKeyboardOnFocus(keepKeyboardFlag: boolean): void;", - "mainBuggyLine": "5924" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5936", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "recover(): Promise;", - "mainBuggyLine": "5936" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5950", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setWindowDecorVisible(isVisible: boolean): void;", - "mainBuggyLine": "5950" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5950", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "setWindowDecorVisible(isVisible: boolean): void;", - "mainBuggyLine": "5950" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5965", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setSubWindowModal(isModal: boolean): Promise;", - "mainBuggyLine": "5965" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5965", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "setSubWindowModal(isModal: boolean): Promise;", - "mainBuggyLine": "5965" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5979", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setWindowDecorHeight(height: number): void;", - "mainBuggyLine": "5979" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5979", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "setWindowDecorHeight(height: number): void;", - "mainBuggyLine": "5979" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "5990", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getWindowDecorHeight(): number;", - "mainBuggyLine": "5990" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "6008", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setTouchableAreas(rects: Array): void;", - "mainBuggyLine": "6008" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "6019", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getTitleButtonRect(): TitleButtonRect;", - "mainBuggyLine": "6019" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "6037", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setTitleButtonVisible(isMaximizeVisible: boolean, isMinimizeVisible: boolean, isSplitVisible: boolean): void;", - "mainBuggyLine": "6037" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "6049", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "enableLandscapeMultiWindow(): Promise;", - "mainBuggyLine": "6049" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "6061", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "disableLandscapeMultiWindow(): Promise;", - "mainBuggyLine": "6061" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "6076", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: 'windowTitleButtonRectChange', callback: Callback): void;", - "mainBuggyLine": "6076" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "6090", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: 'windowTitleButtonRectChange', callback?: Callback): void;", - "mainBuggyLine": "6090" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "6105", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setWindowMask(windowMask: Array>): Promise;", - "mainBuggyLine": "6105" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "6154", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setWindowGrayScale(grayScale: number): Promise;", - "mainBuggyLine": "6154" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "6341", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " interface SubWindowOptions", - "mainBuggyLine": "6341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "6349", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "title: string;", - "mainBuggyLine": "6349" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "6357", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "decorEnabled: boolean;", - "mainBuggyLine": "6357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "6365", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isModal?: boolean;", - "mainBuggyLine": "6365" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "6588", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createSubWindowWithOptions(name: string, options: SubWindowOptions): Promise;", - "mainBuggyLine": "6588" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "6940", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "disableWindowDecor(): void;", - "mainBuggyLine": "6940" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "6955", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setShowOnLockScreen(showOnLockScreen: boolean): void;", - "mainBuggyLine": "6955" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts", - "codeContextStaerLine": "6970", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setDefaultDensityEnabled(enabled: boolean): void;", - "mainBuggyLine": "6970" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.window.d.ts", - "codeContextStaerLine": "4291", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_avoidAreaChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'avoidAreaChange', callback: Callback): void;", - "mainBuggyLine": "4291" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.window.d.ts", - "codeContextStaerLine": "4328", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_avoidAreaChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'avoidAreaChange', callback?: Callback): void;", - "mainBuggyLine": "4328" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.window.d.ts", - "codeContextStaerLine": "4428", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_noInteractionDetected] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'noInteractionDetected', timeout: number, callback: Callback): void;", - "mainBuggyLine": "4428" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.window.d.ts", - "codeContextStaerLine": "4441", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_noInteractionDetected] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'noInteractionDetected', callback?: Callback): void;", - "mainBuggyLine": "4441" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.window.d.ts", - "codeContextStaerLine": "6122", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_windowRectChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(type: 'windowRectChange', callback: Callback): void;", - "mainBuggyLine": "6122" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/@ohos.window.d.ts", - "codeContextStaerLine": "6138", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_windowRectChange] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(type: 'windowRectChange', callback?: Callback): void;", - "mainBuggyLine": "6138" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "64", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type?: 'classic' | 'module';", - "mainBuggyLine": "64" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "87", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name?: string;", - "mainBuggyLine": "87" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "102", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "shared?: boolean;", - "mainBuggyLine": "102" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "102", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "shared?: boolean;", - "mainBuggyLine": "102" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "140", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly type: string;", - "mainBuggyLine": "140" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "140", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly type: string;", - "mainBuggyLine": "140" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "155", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly timeStamp: number;", - "mainBuggyLine": "155" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "155", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly timeStamp: number;", - "mainBuggyLine": "155" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "179", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface ErrorEvent", - "mainBuggyLine": "179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "201", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly message: string;", - "mainBuggyLine": "201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "224", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly filename: string;", - "mainBuggyLine": "224" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "247", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly lineno: number;", - "mainBuggyLine": "247" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "270", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly colno: number;", - "mainBuggyLine": "270" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "293", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly error: Object;", - "mainBuggyLine": "293" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "309", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface MessageEvent", - "mainBuggyLine": "309" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "309", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": " export interface MessageEvent", - "mainBuggyLine": "309" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "323", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly data: T;", - "mainBuggyLine": "323" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "347", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface MessageEvents", - "mainBuggyLine": "347" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "369", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly data;", - "mainBuggyLine": "369" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "418", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "transfer?: Object[];", - "mainBuggyLine": "418" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "440", - "defectLevel": 2, - "defectType": "API_DOC_USEINSTEAD_01", - "description": "API check error of [wrong value]: The [useinstead] tag value is incorrect. Please check the usage method.", - "language": "ts", - "mainBuggyCode": "(evt: Event): void | Promise;", - "mainBuggyLine": "440" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "502", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type MessageType = 'message' | 'messageerror';", - "mainBuggyLine": "502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "625", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addEventListener(type: string, listener: WorkerEventListener): void;", - "mainBuggyLine": "625" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "653", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dispatchEvent(event: Event): boolean;", - "mainBuggyLine": "653" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "681", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "removeEventListener(type: string, callback?: WorkerEventListener): void;", - "mainBuggyLine": "681" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "697", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "removeAllListener(): void;", - "mainBuggyLine": "697" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "708", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface WorkerGlobalScope", - "mainBuggyLine": "708" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "717", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly name: string;", - "mainBuggyLine": "717" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "729", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onerror?: (ev: ErrorEvent) => void;", - "mainBuggyLine": "729" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "739", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly self: WorkerGlobalScope & typeof globalThis;", - "mainBuggyLine": "739" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "763", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " declare interface GlobalScope", - "mainBuggyLine": "763" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "785", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly name: string;", - "mainBuggyLine": "785" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "814", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onerror?: (ev: ErrorEvent) => void;", - "mainBuggyLine": "814" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "836", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly self: GlobalScope & typeof globalThis;", - "mainBuggyLine": "836" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "847", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface DedicatedWorkerGlobalScope", - "mainBuggyLine": "847" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "859", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onmessage?: (this: DedicatedWorkerGlobalScope, ev: MessageEvent) => void;", - "mainBuggyLine": "859" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "871", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onmessageerror?: (this: DedicatedWorkerGlobalScope, ev: MessageEvent) => void;", - "mainBuggyLine": "871" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "940", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface ThreadWorkerGlobalScope", - "mainBuggyLine": "940" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "980", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onmessage?: (this: ThreadWorkerGlobalScope, ev: MessageEvents) => void;", - "mainBuggyLine": "980" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1018", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onmessageerror?: (this: ThreadWorkerGlobalScope, ev: MessageEvents) => void;", - "mainBuggyLine": "1018" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1181", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "callGlobalCallObjectMethod(instanceName: string, methodName: string, timeout: number, ...args: Object[]): Object;", - "mainBuggyLine": "1181" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1230", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [implements] tag is missing.", - "language": "ts", - "mainBuggyCode": " class ThreadWorker", - "mainBuggyLine": "1230" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1310", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onexit?: (code: number) => void;", - "mainBuggyLine": "1310" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1347", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onerror?: (err: ErrorEvent) => void;", - "mainBuggyLine": "1347" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1387", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onmessage?: (event: MessageEvents) => void;", - "mainBuggyLine": "1387" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1424", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onmessageerror?: (event: MessageEvents) => void;", - "mainBuggyLine": "1424" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1573", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: string, listener: WorkerEventListener): void;", - "mainBuggyLine": "1573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1605", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "once(type: string, listener: WorkerEventListener): void;", - "mainBuggyLine": "1605" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1635", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: string, listener?: WorkerEventListener): void;", - "mainBuggyLine": "1635" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1690", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addEventListener(type: string, listener: WorkerEventListener): void;", - "mainBuggyLine": "1690" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1718", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dispatchEvent(event: Event): boolean;", - "mainBuggyLine": "1718" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1746", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "removeEventListener(type: string, callback?: WorkerEventListener): void;", - "mainBuggyLine": "1746" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1762", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "removeAllListener(): void;", - "mainBuggyLine": "1762" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1777", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "registerGlobalCallObject(instanceName: string, globalCallObject: Object): void;", - "mainBuggyLine": "1777" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1791", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "unregisterGlobalCallObject(instanceName?: string): void;", - "mainBuggyLine": "1791" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1801", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class RestrictedWorker", - "mainBuggyLine": "1801" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1816", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(scriptURL: string, options?: WorkerOptions);", - "mainBuggyLine": "1816" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1827", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " class Worker", - "mainBuggyLine": "1827" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1827", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [implements] tag is missing.", - "language": "ts", - "mainBuggyCode": " class Worker", - "mainBuggyLine": "1827" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1838", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "constructor(scriptURL: string, options?: WorkerOptions);", - "mainBuggyLine": "1838" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1849", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onexit?: (code: number) => void;", - "mainBuggyLine": "1849" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1849", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onexit?: (code: number) => void;", - "mainBuggyLine": "1849" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1861", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onerror?: (err: ErrorEvent) => void;", - "mainBuggyLine": "1861" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1861", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onerror?: (err: ErrorEvent) => void;", - "mainBuggyLine": "1861" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1874", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onmessage?: (event: MessageEvent) => void;", - "mainBuggyLine": "1874" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1874", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onmessage?: (event: MessageEvent) => void;", - "mainBuggyLine": "1874" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1886", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onmessageerror?: (event: MessageEvent) => void;", - "mainBuggyLine": "1886" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1886", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onmessageerror?: (event: MessageEvent) => void;", - "mainBuggyLine": "1886" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1900", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "postMessage(message: Object, transfer: ArrayBuffer[]): void;", - "mainBuggyLine": "1900" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1914", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "postMessage(message: Object, options?: PostMessageOptions): void;", - "mainBuggyLine": "1914" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1926", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "on(type: string, listener: EventListener): void;", - "mainBuggyLine": "1926" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1939", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "once(type: string, listener: EventListener): void;", - "mainBuggyLine": "1939" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1951", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "off(type: string, listener?: EventListener): void;", - "mainBuggyLine": "1951" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1961", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "terminate(): void;", - "mainBuggyLine": "1961" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts", - "codeContextStaerLine": "1973", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "const parentPort: DedicatedWorkerGlobalScope;", - "mainBuggyLine": "1973" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.WorkSchedulerExtensionAbility.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type WorkSchedulerExtensionContext = _WorkSchedulerExtensionContext;", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.WorkSchedulerExtensionAbility.d.ts", - "codeContextStaerLine": "49", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "context: WorkSchedulerExtensionContext;", - "mainBuggyLine": "49" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.xml.d.ts", - "codeContextStaerLine": "1072", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "supportDoctype?: boolean;", - "mainBuggyLine": "1072" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.xml.d.ts", - "codeContextStaerLine": "1095", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "ignoreNameSpace?: boolean;", - "mainBuggyLine": "1095" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.xml.d.ts", - "codeContextStaerLine": "1118", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "tagValueCallbackFunction?: (name: string, value: string) => boolean;", - "mainBuggyLine": "1118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.xml.d.ts", - "codeContextStaerLine": "1141", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "attributeValueCallbackFunction?: (name: string, value: string) => boolean;", - "mainBuggyLine": "1141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.xml.d.ts", - "codeContextStaerLine": "1164", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "tokenValueCallbackFunction?: (eventType: EventType, value: ParseInfo) => boolean;", - "mainBuggyLine": "1164" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.zlib.d.ts", - "codeContextStaerLine": "50", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": " export enum ErrorCode", - "mainBuggyLine": "50" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.zlib.d.ts", - "codeContextStaerLine": "56", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ERROR_CODE_OK = 0", - "mainBuggyLine": "56" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.zlib.d.ts", - "codeContextStaerLine": "62", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "ERROR_CODE_ERRNO = -1", - "mainBuggyLine": "62" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.zlib.d.ts", - "codeContextStaerLine": "482", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "level?: CompressLevel;", - "mainBuggyLine": "482" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.zlib.d.ts", - "codeContextStaerLine": "497", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "memLevel?: MemLevel;", - "mainBuggyLine": "497" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.zlib.d.ts", - "codeContextStaerLine": "512", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "strategy?: CompressStrategy;", - "mainBuggyLine": "512" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.zlib.d.ts", - "codeContextStaerLine": "897", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "type InflateBackInputCallback = (inDesc: object) => ArrayBuffer;", - "mainBuggyLine": "897" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.zlib.d.ts", - "codeContextStaerLine": "897", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_06", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [returns] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "type InflateBackInputCallback = (inDesc: object) => ArrayBuffer;", - "mainBuggyLine": "897" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.zlib.d.ts", - "codeContextStaerLine": "897", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [1] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "type InflateBackInputCallback = (inDesc: object) => ArrayBuffer;", - "mainBuggyLine": "897" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.zlib.d.ts", - "codeContextStaerLine": "897", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type InflateBackInputCallback = (inDesc: object) => ArrayBuffer;", - "mainBuggyLine": "897" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.zlib.d.ts", - "codeContextStaerLine": "912", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "type InflateBackOutputCallback = (outDesc: object, buf: ArrayBuffer, length: number) => number;", - "mainBuggyLine": "912" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.zlib.d.ts", - "codeContextStaerLine": "912", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "type InflateBackOutputCallback = (outDesc: object, buf: ArrayBuffer, length: number) => number;", - "mainBuggyLine": "912" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.zlib.d.ts", - "codeContextStaerLine": "912", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_05", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [param] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "type InflateBackOutputCallback = (outDesc: object, buf: ArrayBuffer, length: number) => number;", - "mainBuggyLine": "912" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.zlib.d.ts", - "codeContextStaerLine": "912", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_06", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [returns] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "type InflateBackOutputCallback = (outDesc: object, buf: ArrayBuffer, length: number) => number;", - "mainBuggyLine": "912" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.zlib.d.ts", - "codeContextStaerLine": "912", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed.There are [3] redundant [param]. Please check if the tag should be deleted.", - "language": "ts", - "mainBuggyCode": "type InflateBackOutputCallback = (outDesc: object, buf: ArrayBuffer, length: number) => number;", - "mainBuggyLine": "912" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.zlib.d.ts", - "codeContextStaerLine": "912", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type InflateBackOutputCallback = (outDesc: object, buf: ArrayBuffer, length: number) => number;", - "mainBuggyLine": "912" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.zlib.d.ts", - "codeContextStaerLine": "926", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function zipFile(inFile: string, outFile: string, options: Options): Promise;", - "mainBuggyLine": "926" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@ohos.zlib.d.ts", - "codeContextStaerLine": "940", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "function unzipFile(inFile: string, outFile: string, options: Options): Promise;", - "mainBuggyLine": "940" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.battery.d.ts", - "codeContextStaerLine": "35", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "charging: boolean;", - "mainBuggyLine": "35" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.battery.d.ts", - "codeContextStaerLine": "44", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "level: number;", - "mainBuggyLine": "44" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.battery.d.ts", - "codeContextStaerLine": "61", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: (data: BatteryResponse) => void;", - "mainBuggyLine": "61" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.battery.d.ts", - "codeContextStaerLine": "70", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "70" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.battery.d.ts", - "codeContextStaerLine": "79", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "79" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.bluetooth.d.ts", - "codeContextStaerLine": "33", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "interval: number;", - "mainBuggyLine": "33" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.bluetooth.d.ts", - "codeContextStaerLine": "40", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success: () => void;", - "mainBuggyLine": "40" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.bluetooth.d.ts", - "codeContextStaerLine": "47", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail: (data: string, code: number) => void;", - "mainBuggyLine": "47" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.bluetooth.d.ts", - "codeContextStaerLine": "54", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete: () => void;", - "mainBuggyLine": "54" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.bluetooth.d.ts", - "codeContextStaerLine": "69", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success: () => void;", - "mainBuggyLine": "69" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.bluetooth.d.ts", - "codeContextStaerLine": "76", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail: (data: string, code: number) => void;", - "mainBuggyLine": "76" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.bluetooth.d.ts", - "codeContextStaerLine": "83", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete: () => void;", - "mainBuggyLine": "83" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.bluetooth.d.ts", - "codeContextStaerLine": "98", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "addrType: 'public' | 'random';", - "mainBuggyLine": "98" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.bluetooth.d.ts", - "codeContextStaerLine": "105", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "addr: string;", - "mainBuggyLine": "105" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.bluetooth.d.ts", - "codeContextStaerLine": "112", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rssi: number;", - "mainBuggyLine": "112" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.bluetooth.d.ts", - "codeContextStaerLine": "119", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "txpower: string;", - "mainBuggyLine": "119" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.bluetooth.d.ts", - "codeContextStaerLine": "126", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "data: string;", - "mainBuggyLine": "126" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.bluetooth.d.ts", - "codeContextStaerLine": "141", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "devices: Array;", - "mainBuggyLine": "141" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.bluetooth.d.ts", - "codeContextStaerLine": "156", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success: (data: BLEFoundResponse) => void;", - "mainBuggyLine": "156" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.bluetooth.d.ts", - "codeContextStaerLine": "163", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail: (data: string, code: number) => void;", - "mainBuggyLine": "163" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.brightness.d.ts", - "codeContextStaerLine": "35", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: number;", - "mainBuggyLine": "35" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.brightness.d.ts", - "codeContextStaerLine": "52", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: (data: BrightnessResponse) => void;", - "mainBuggyLine": "52" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.brightness.d.ts", - "codeContextStaerLine": "61", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "61" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.brightness.d.ts", - "codeContextStaerLine": "70", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "70" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.brightness.d.ts", - "codeContextStaerLine": "91", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: number;", - "mainBuggyLine": "91" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.brightness.d.ts", - "codeContextStaerLine": "100", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: () => void;", - "mainBuggyLine": "100" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.brightness.d.ts", - "codeContextStaerLine": "109", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "109" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.brightness.d.ts", - "codeContextStaerLine": "118", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.brightness.d.ts", - "codeContextStaerLine": "137", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "mode: number;", - "mainBuggyLine": "137" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.brightness.d.ts", - "codeContextStaerLine": "154", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: (data: BrightnessModeResponse) => void;", - "mainBuggyLine": "154" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.brightness.d.ts", - "codeContextStaerLine": "163", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "163" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.brightness.d.ts", - "codeContextStaerLine": "172", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "172" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.brightness.d.ts", - "codeContextStaerLine": "191", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "mode: number;", - "mainBuggyLine": "191" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.brightness.d.ts", - "codeContextStaerLine": "200", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: () => void;", - "mainBuggyLine": "200" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.brightness.d.ts", - "codeContextStaerLine": "209", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "209" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.brightness.d.ts", - "codeContextStaerLine": "218", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "218" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.brightness.d.ts", - "codeContextStaerLine": "235", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "keepScreenOn: boolean;", - "mainBuggyLine": "235" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.brightness.d.ts", - "codeContextStaerLine": "244", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: () => void;", - "mainBuggyLine": "244" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.brightness.d.ts", - "codeContextStaerLine": "253", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "253" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.brightness.d.ts", - "codeContextStaerLine": "262", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "262" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.device.d.ts", - "codeContextStaerLine": "162", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: (data: DeviceResponse) => void;", - "mainBuggyLine": "162" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.device.d.ts", - "codeContextStaerLine": "170", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: any, code: number) => void;", - "mainBuggyLine": "170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.device.d.ts", - "codeContextStaerLine": "178", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.fetch.d.ts", - "codeContextStaerLine": "28", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "code: number;", - "mainBuggyLine": "28" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.fetch.d.ts", - "codeContextStaerLine": "35", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "data: string | object;", - "mainBuggyLine": "35" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.fetch.d.ts", - "codeContextStaerLine": "42", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "headers: Object;", - "mainBuggyLine": "42" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "35", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uri: string;", - "mainBuggyLine": "35" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "45", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length: number;", - "mainBuggyLine": "45" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "lastModifiedTime: number;", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "66", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: 'dir' | 'file';", - "mainBuggyLine": "66" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "76", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "subFiles?: Array;", - "mainBuggyLine": "76" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "96", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "srcUri: string;", - "mainBuggyLine": "96" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "108", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "dstUri: string;", - "mainBuggyLine": "108" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "118", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: (uri: string) => void;", - "mainBuggyLine": "118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "127", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "127" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "136", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "136" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "151", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fileList: Array;", - "mainBuggyLine": "151" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "171", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uri: string;", - "mainBuggyLine": "171" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "180", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: (data: FileListResponse) => void;", - "mainBuggyLine": "180" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "189", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "189" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "198", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "218", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "srcUri: string;", - "mainBuggyLine": "218" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "230", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "dstUri: string;", - "mainBuggyLine": "230" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "240", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: (uri: string) => void;", - "mainBuggyLine": "240" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "249", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "249" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "258", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "258" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "278", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uri: string;", - "mainBuggyLine": "278" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "288", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "recursive?: boolean;", - "mainBuggyLine": "288" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "297", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: (file: FileResponse) => void;", - "mainBuggyLine": "297" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "306", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "306" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "315", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "315" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "335", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uri: string;", - "mainBuggyLine": "335" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "344", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: () => void;", - "mainBuggyLine": "344" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "353", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "353" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "362", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "362" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "382", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uri: string;", - "mainBuggyLine": "382" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "391", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "text: string;", - "mainBuggyLine": "391" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "400", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "encoding?: string;", - "mainBuggyLine": "400" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "409", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "append?: boolean;", - "mainBuggyLine": "409" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "418", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: () => void;", - "mainBuggyLine": "418" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "427", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "427" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "436", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "436" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "451", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "text: string;", - "mainBuggyLine": "451" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "471", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uri: string;", - "mainBuggyLine": "471" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "481", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "encoding?: string;", - "mainBuggyLine": "481" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "491", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "position?: number;", - "mainBuggyLine": "491" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "501", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length?: number;", - "mainBuggyLine": "501" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "510", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: (data: FileReadTextResponse) => void;", - "mainBuggyLine": "510" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "519", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "519" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "528", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "528" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "548", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uri: string;", - "mainBuggyLine": "548" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "557", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "buffer: Uint8Array;", - "mainBuggyLine": "557" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "566", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "position?: number;", - "mainBuggyLine": "566" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "576", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "append?: boolean;", - "mainBuggyLine": "576" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "585", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: () => void;", - "mainBuggyLine": "585" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "594", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "594" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "603", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "603" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "618", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "buffer: Uint8Array;", - "mainBuggyLine": "618" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "638", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uri: string;", - "mainBuggyLine": "638" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "648", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "position?: number;", - "mainBuggyLine": "648" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "658", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length?: number;", - "mainBuggyLine": "658" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "667", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: (data: FileReadArrayBufferResponse) => void;", - "mainBuggyLine": "667" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "676", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "676" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "685", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "685" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "705", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uri: string;", - "mainBuggyLine": "705" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "714", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: () => void;", - "mainBuggyLine": "714" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "723", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "723" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "732", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "732" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "753", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uri: string;", - "mainBuggyLine": "753" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "763", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "recursive?: boolean;", - "mainBuggyLine": "763" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "772", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: () => void;", - "mainBuggyLine": "772" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "781", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "781" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "790", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "790" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "810", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uri: string;", - "mainBuggyLine": "810" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "820", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "recursive?: boolean;", - "mainBuggyLine": "820" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "829", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: () => void;", - "mainBuggyLine": "829" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "838", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "838" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts", - "codeContextStaerLine": "847", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "847" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "26", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface GeolocationResponse", - "mainBuggyLine": "26" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "26", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface GeolocationResponse", - "mainBuggyLine": "26" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "31", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "longitude: number;", - "mainBuggyLine": "31" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "31", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "longitude: number;", - "mainBuggyLine": "31" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "31", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "longitude: number;", - "mainBuggyLine": "31" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "37", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "latitude: number;", - "mainBuggyLine": "37" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "37", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "latitude: number;", - "mainBuggyLine": "37" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "37", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "latitude: number;", - "mainBuggyLine": "37" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "43", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "altitude: number;", - "mainBuggyLine": "43" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "43", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "altitude: number;", - "mainBuggyLine": "43" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "43", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "altitude: number;", - "mainBuggyLine": "43" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "49", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "accuracy: number;", - "mainBuggyLine": "49" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "49", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "accuracy: number;", - "mainBuggyLine": "49" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "49", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "accuracy: number;", - "mainBuggyLine": "49" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "time: number;", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "time: number;", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "time: number;", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "64", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [syscap] labels.", - "language": "ts", - "mainBuggyCode": " export interface GetLocationOption", - "mainBuggyLine": "64" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "64", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface GetLocationOption", - "mainBuggyLine": "64" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "64", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface GetLocationOption", - "mainBuggyLine": "64" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "64", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface GetLocationOption", - "mainBuggyLine": "64" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "74", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "timeout?: number;", - "mainBuggyLine": "74" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "74", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "timeout?: number;", - "mainBuggyLine": "74" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "74", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "timeout?: number;", - "mainBuggyLine": "74" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "81", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "coordType?: string;", - "mainBuggyLine": "81" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "81", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "coordType?: string;", - "mainBuggyLine": "81" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "81", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "coordType?: string;", - "mainBuggyLine": "81" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "87", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "success?: (data: GeolocationResponse) => void;", - "mainBuggyLine": "87" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "87", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: (data: GeolocationResponse) => void;", - "mainBuggyLine": "87" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "87", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: (data: GeolocationResponse) => void;", - "mainBuggyLine": "87" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "93", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "93" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "93", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "93" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "93", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "93" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "99", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "99" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "99", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "99" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "99", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "99" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "106", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface GetLocationTypeResponse", - "mainBuggyLine": "106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "106", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface GetLocationTypeResponse", - "mainBuggyLine": "106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "110", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "types: Array;", - "mainBuggyLine": "110" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "110", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "types: Array;", - "mainBuggyLine": "110" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "110", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "types: Array;", - "mainBuggyLine": "110" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "117", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface GetLocationTypeOption", - "mainBuggyLine": "117" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "117", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface GetLocationTypeOption", - "mainBuggyLine": "117" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "122", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "success?: (data: GetLocationTypeResponse) => void;", - "mainBuggyLine": "122" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "122", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: (data: GetLocationTypeResponse) => void;", - "mainBuggyLine": "122" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "122", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: (data: GetLocationTypeResponse) => void;", - "mainBuggyLine": "122" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "128", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "128" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "128", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "128" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "128", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "128" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "134", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "134", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "134", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "143", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [syscap] labels.", - "language": "ts", - "mainBuggyCode": " export interface SubscribeLocationOption", - "mainBuggyLine": "143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "143", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface SubscribeLocationOption", - "mainBuggyLine": "143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "143", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface SubscribeLocationOption", - "mainBuggyLine": "143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "143", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface SubscribeLocationOption", - "mainBuggyLine": "143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "149", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "coordType?: string;", - "mainBuggyLine": "149" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "149", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "coordType?: string;", - "mainBuggyLine": "149" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "149", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "coordType?: string;", - "mainBuggyLine": "149" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "155", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "success: (data: GeolocationResponse) => void;", - "mainBuggyLine": "155" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "155", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success: (data: GeolocationResponse) => void;", - "mainBuggyLine": "155" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "155", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "success: (data: GeolocationResponse) => void;", - "mainBuggyLine": "155" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "161", - "defectLevel": 2, - "defectType": "API_DOC_DEPRECATED_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [deprecated] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "161", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "161", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "169", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": " export default class Geolocation", - "mainBuggyLine": "169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "177", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "static getLocation(options?: GetLocationOption): void;", - "mainBuggyLine": "177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "177", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "static getLocation(options?: GetLocationOption): void;", - "mainBuggyLine": "177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "177", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "static getLocation(options?: GetLocationOption): void;", - "mainBuggyLine": "177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "184", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "static getLocationType(options?: GetLocationTypeOption): void;", - "mainBuggyLine": "184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "184", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "static getLocationType(options?: GetLocationTypeOption): void;", - "mainBuggyLine": "184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "184", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "static getLocationType(options?: GetLocationTypeOption): void;", - "mainBuggyLine": "184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "193", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "static subscribe(options: SubscribeLocationOption): void;", - "mainBuggyLine": "193" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "193", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "static subscribe(options: SubscribeLocationOption): void;", - "mainBuggyLine": "193" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "193", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_01", - "description": "API check error of [wrong value]: The type of the [1] [param] tag is incorrect. Please check if it matches the type of the [1] parameter.", - "language": "ts", - "mainBuggyCode": "static subscribe(options: SubscribeLocationOption): void;", - "mainBuggyLine": "193" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "201", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "static unsubscribe(): void;", - "mainBuggyLine": "201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "201", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "static unsubscribe(): void;", - "mainBuggyLine": "201" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "208", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": "static getSupportedCoordTypes(): Array;", - "mainBuggyLine": "208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "208", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [since] tag is missing.", - "language": "ts", - "mainBuggyCode": "static getSupportedCoordTypes(): Array;", - "mainBuggyLine": "208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts", - "codeContextStaerLine": "208", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_02", - "description": "API check error of [wrong value]: The [returns] tag type is incorrect. Please check if the tag type is consistent with the return type.", - "language": "ts", - "mainBuggyCode": "static getSupportedCoordTypes(): Array;", - "mainBuggyLine": "208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.package.d.ts", - "codeContextStaerLine": "35", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "result: boolean;", - "mainBuggyLine": "35" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.package.d.ts", - "codeContextStaerLine": "52", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName: string;", - "mainBuggyLine": "52" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.package.d.ts", - "codeContextStaerLine": "61", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: (data: CheckPackageHasInstalledResponse) => void;", - "mainBuggyLine": "61" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.package.d.ts", - "codeContextStaerLine": "70", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: any, code: number) => void;", - "mainBuggyLine": "70" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.package.d.ts", - "codeContextStaerLine": "79", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "79" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "36", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "code: number;", - "mainBuggyLine": "36" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "46", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "data: string;", - "mainBuggyLine": "46" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "headers: Object;", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "72", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "token: string;", - "mainBuggyLine": "72" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "89", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uri: string;", - "mainBuggyLine": "89" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "106", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "filename?: string;", - "mainBuggyLine": "106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "115", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name?: string;", - "mainBuggyLine": "115" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "124", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uri: string;", - "mainBuggyLine": "124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "134", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type?: string;", - "mainBuggyLine": "134" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "151", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "151" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "160", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: string;", - "mainBuggyLine": "160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "177", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "url: string;", - "mainBuggyLine": "177" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "186", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "data?: Array;", - "mainBuggyLine": "186" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "195", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "files: Array;", - "mainBuggyLine": "195" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "204", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "header?: Object;", - "mainBuggyLine": "204" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "213", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "method?: string;", - "mainBuggyLine": "213" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "222", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: (data: UploadResponse) => void;", - "mainBuggyLine": "222" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "231", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: any, code: number) => void;", - "mainBuggyLine": "231" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "240", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "240" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "257", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "url: string;", - "mainBuggyLine": "257" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "267", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "filename?: string;", - "mainBuggyLine": "267" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "276", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "header?: string;", - "mainBuggyLine": "276" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "286", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "description?: string;", - "mainBuggyLine": "286" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "295", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: (data: DownloadResponse) => void;", - "mainBuggyLine": "295" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "304", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: any, code: number) => void;", - "mainBuggyLine": "304" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "313", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "313" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "330", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "token: string;", - "mainBuggyLine": "330" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "339", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: (data: OnDownloadCompleteResponse) => void;", - "mainBuggyLine": "339" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "348", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: any, code: number) => void;", - "mainBuggyLine": "348" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "357", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts", - "codeContextStaerLine": "364", - "defectLevel": 2, - "defectType": "API_DOC_SYSCAP_03", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [syscap] tag is missing.", - "language": "ts", - "mainBuggyCode": " export default class Request", - "mainBuggyLine": "364" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.router.d.ts", - "codeContextStaerLine": "232", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type ParamsInterface = {\n [key: string]: Object;\n};", - "mainBuggyLine": "232" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "29", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface AccelerometerResponse", - "mainBuggyLine": "29" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "38", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "x: number;", - "mainBuggyLine": "38" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "48", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "y: number;", - "mainBuggyLine": "48" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "58", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "z: number;", - "mainBuggyLine": "58" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "69", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface subscribeAccelerometerOptions", - "mainBuggyLine": "69" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "83", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "interval: string;", - "mainBuggyLine": "83" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "93", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success: (data: AccelerometerResponse) => void;", - "mainBuggyLine": "93" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "103", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "121", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "direction: number;", - "mainBuggyLine": "121" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "139", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success: (data: CompassResponse) => void;", - "mainBuggyLine": "139" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "148", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "148" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "166", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "distance: number;", - "mainBuggyLine": "166" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "184", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success: (data: ProximityResponse) => void;", - "mainBuggyLine": "184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "193", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "193" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "211", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "intensity: number;", - "mainBuggyLine": "211" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "229", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success: (data: LightResponse) => void;", - "mainBuggyLine": "229" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "238", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "238" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "249", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface StepCounterResponse", - "mainBuggyLine": "249" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "259", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "steps: number;", - "mainBuggyLine": "259" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "270", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface SubscribeStepCounterOptions", - "mainBuggyLine": "270" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "279", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success: (data: StepCounterResponse) => void;", - "mainBuggyLine": "279" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "289", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "289" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "307", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "pressure: number;", - "mainBuggyLine": "307" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "325", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success: (data: BarometerResponse) => void;", - "mainBuggyLine": "325" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "334", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "334" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "345", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface HeartRateResponse", - "mainBuggyLine": "345" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "355", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "heartRate: number;", - "mainBuggyLine": "355" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "366", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface SubscribeHeartRateOptions", - "mainBuggyLine": "366" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "375", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success: (data: HeartRateResponse) => void;", - "mainBuggyLine": "375" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "385", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "385" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "403", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: boolean;", - "mainBuggyLine": "403" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "421", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success: (data: OnBodyStateResponse) => void;", - "mainBuggyLine": "421" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "430", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "430" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "448", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success: (data: OnBodyStateResponse) => void;", - "mainBuggyLine": "448" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "457", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "457" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "466", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "466" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "484", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "alpha: number;", - "mainBuggyLine": "484" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "493", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "beta: number;", - "mainBuggyLine": "493" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "502", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "gamma: number;", - "mainBuggyLine": "502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "525", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "interval: string;", - "mainBuggyLine": "525" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "534", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success: (data: DeviceOrientationResponse) => void;", - "mainBuggyLine": "534" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "543", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "543" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "554", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface GyroscopeResponse", - "mainBuggyLine": "554" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "563", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "x: number;", - "mainBuggyLine": "563" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "573", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "y: number;", - "mainBuggyLine": "573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "583", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "z: number;", - "mainBuggyLine": "583" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "594", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface SubscribeGyroscopeOptions", - "mainBuggyLine": "594" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "608", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "interval: string;", - "mainBuggyLine": "608" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "618", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success: (data: GyroscopeResponse) => void;", - "mainBuggyLine": "618" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts", - "codeContextStaerLine": "628", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "628" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.storage.d.ts", - "codeContextStaerLine": "38", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "key: string;", - "mainBuggyLine": "38" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.storage.d.ts", - "codeContextStaerLine": "49", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "default?: string;", - "mainBuggyLine": "49" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.storage.d.ts", - "codeContextStaerLine": "59", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: (data: any) => void;", - "mainBuggyLine": "59" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.storage.d.ts", - "codeContextStaerLine": "69", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "69" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.storage.d.ts", - "codeContextStaerLine": "79", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "79" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.storage.d.ts", - "codeContextStaerLine": "99", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "key: string;", - "mainBuggyLine": "99" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.storage.d.ts", - "codeContextStaerLine": "109", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: string;", - "mainBuggyLine": "109" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.storage.d.ts", - "codeContextStaerLine": "119", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: () => void;", - "mainBuggyLine": "119" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.storage.d.ts", - "codeContextStaerLine": "129", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "129" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.storage.d.ts", - "codeContextStaerLine": "139", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "139" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.storage.d.ts", - "codeContextStaerLine": "158", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: () => void;", - "mainBuggyLine": "158" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.storage.d.ts", - "codeContextStaerLine": "168", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "168" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.storage.d.ts", - "codeContextStaerLine": "178", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.storage.d.ts", - "codeContextStaerLine": "198", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "key: string;", - "mainBuggyLine": "198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.storage.d.ts", - "codeContextStaerLine": "208", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: () => void;", - "mainBuggyLine": "208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.storage.d.ts", - "codeContextStaerLine": "218", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "218" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.storage.d.ts", - "codeContextStaerLine": "228", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "228" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.vibrator.d.ts", - "codeContextStaerLine": "29", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface VibrateOptions", - "mainBuggyLine": "29" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.vibrator.d.ts", - "codeContextStaerLine": "39", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "mode?: 'long' | 'short';", - "mainBuggyLine": "39" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.vibrator.d.ts", - "codeContextStaerLine": "49", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success: () => void;", - "mainBuggyLine": "49" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.vibrator.d.ts", - "codeContextStaerLine": "59", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "59" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.vibrator.d.ts", - "codeContextStaerLine": "69", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "69" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/@system.vibrator.d.ts", - "codeContextStaerLine": "79", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export default class Vibrator", - "mainBuggyLine": "79" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/app/context.d.ts", - "codeContextStaerLine": "41", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface Context", - "mainBuggyLine": "41" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AbilityMonitor.d.ts", - "codeContextStaerLine": "124", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onAbilityCreate?: (ability: UIAbility) => void;", - "mainBuggyLine": "124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AbilityMonitor.d.ts", - "codeContextStaerLine": "147", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onAbilityForeground?: (ability: UIAbility) => void;", - "mainBuggyLine": "147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AbilityMonitor.d.ts", - "codeContextStaerLine": "170", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onAbilityBackground?: (ability: UIAbility) => void;", - "mainBuggyLine": "170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AbilityMonitor.d.ts", - "codeContextStaerLine": "193", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onAbilityDestroy?: (ability: UIAbility) => void;", - "mainBuggyLine": "193" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AbilityMonitor.d.ts", - "codeContextStaerLine": "216", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onWindowStageCreate?: (ability: UIAbility) => void;", - "mainBuggyLine": "216" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AbilityMonitor.d.ts", - "codeContextStaerLine": "231", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onWindowStageRestore?: (ability: UIAbility) => void;", - "mainBuggyLine": "231" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AbilityMonitor.d.ts", - "codeContextStaerLine": "254", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onWindowStageDestroy?: (ability: UIAbility) => void;", - "mainBuggyLine": "254" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "538", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "accessibilityFocused: boolean;", - "mainBuggyLine": "538" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "545", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName: string;", - "mainBuggyLine": "545" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "552", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "checkable: boolean;", - "mainBuggyLine": "552" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "559", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "checked: boolean;", - "mainBuggyLine": "559" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "566", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "children: Array;", - "mainBuggyLine": "566" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "573", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "clickable: boolean;", - "mainBuggyLine": "573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "580", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "componentId: number;", - "mainBuggyLine": "580" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "587", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "componentType: string;", - "mainBuggyLine": "587" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "594", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "contents: Array;", - "mainBuggyLine": "594" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "601", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "currentIndex: number;", - "mainBuggyLine": "601" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "608", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "description: string;", - "mainBuggyLine": "608" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "615", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "editable: boolean;", - "mainBuggyLine": "615" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "622", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "endIndex: number;", - "mainBuggyLine": "622" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "629", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "error: string;", - "mainBuggyLine": "629" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "636", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "focusable: boolean;", - "mainBuggyLine": "636" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "643", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "hintText: string;", - "mainBuggyLine": "643" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "650", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "inputType: number;", - "mainBuggyLine": "650" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "657", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "inspectorKey: string;", - "mainBuggyLine": "657" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "664", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isActive: boolean;", - "mainBuggyLine": "664" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "671", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isEnable: boolean;", - "mainBuggyLine": "671" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "678", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isHint: boolean;", - "mainBuggyLine": "678" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "685", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isFocused: boolean;", - "mainBuggyLine": "685" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "692", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isPassword: boolean;", - "mainBuggyLine": "692" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "699", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isVisible: boolean;", - "mainBuggyLine": "699" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "706", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "itemCount: number;", - "mainBuggyLine": "706" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "713", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "lastContent: string;", - "mainBuggyLine": "713" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "720", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "layer: number;", - "mainBuggyLine": "720" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "727", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "longClickable: boolean;", - "mainBuggyLine": "727" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "734", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "pageId: number;", - "mainBuggyLine": "734" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "741", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "parent: AccessibilityElement;", - "mainBuggyLine": "741" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "748", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "pluralLineSupported: boolean;", - "mainBuggyLine": "748" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "755", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rect: Rect;", - "mainBuggyLine": "755" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "762", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "resourceName: string;", - "mainBuggyLine": "762" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "769", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rootElement: AccessibilityElement;", - "mainBuggyLine": "769" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "776", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "screenRect: Rect;", - "mainBuggyLine": "776" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "783", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "scrollable: boolean;", - "mainBuggyLine": "783" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "790", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "selected: boolean;", - "mainBuggyLine": "790" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "797", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "startIndex: number;", - "mainBuggyLine": "797" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "804", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "text: string;", - "mainBuggyLine": "804" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "811", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "textLengthLimit: number;", - "mainBuggyLine": "811" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "818", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "textMoveUnit: accessibility.TextMoveUnit;", - "mainBuggyLine": "818" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "825", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "triggerAction: accessibility.Action;", - "mainBuggyLine": "825" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "832", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "type: WindowType;", - "mainBuggyLine": "832" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "839", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "valueMax: number;", - "mainBuggyLine": "839" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "846", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "valueMin: number;", - "mainBuggyLine": "846" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "853", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "valueNow: number;", - "mainBuggyLine": "853" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "860", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "windowId: number;", - "mainBuggyLine": "860" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "867", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "offset: number;", - "mainBuggyLine": "867" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "874", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "textType: string;", - "mainBuggyLine": "874" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "881", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "accessibilityText: string;", - "mainBuggyLine": "881" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "888", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "hotArea: Rect;", - "mainBuggyLine": "888" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "897", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type FocusDirection = 'up' | 'down' | 'left' | 'right' | 'forward' | 'backward';", - "mainBuggyLine": "897" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "905", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type FocusType = 'accessibility' | 'normal';", - "mainBuggyLine": "905" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts", - "codeContextStaerLine": "913", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type WindowType = 'application' | 'system';", - "mainBuggyLine": "913" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ApplicationContext.d.ts", - "codeContextStaerLine": "438", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "clearUpApplicationData(): Promise;", - "mainBuggyLine": "438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ApplicationContext.d.ts", - "codeContextStaerLine": "451", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "clearUpApplicationData(callback: AsyncCallback): void;", - "mainBuggyLine": "451" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ApplicationContext.d.ts", - "codeContextStaerLine": "488", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "preloadUIExtensionAbility(want: Want): Promise;", - "mainBuggyLine": "488" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ApplicationContext.d.ts", - "codeContextStaerLine": "488", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "preloadUIExtensionAbility(want: Want): Promise;", - "mainBuggyLine": "488" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ApplicationContext.d.ts", - "codeContextStaerLine": "506", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setSupportedProcessCache(isSupported : boolean): void;", - "mainBuggyLine": "506" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ApplicationContext.d.ts", - "codeContextStaerLine": "506", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_01", - "description": "API check error of [wrong value]: The [permission] tag value is incorrect. Please check if the permission field has been configured or update the configuration file.", - "language": "ts", - "mainBuggyCode": "setSupportedProcessCache(isSupported : boolean): void;", - "mainBuggyLine": "506" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ApplicationContext.d.ts", - "codeContextStaerLine": "519", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setFont(font: string): void;", - "mainBuggyLine": "519" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/Context.d.ts", - "codeContextStaerLine": "396", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createBundleContext(bundleName: string): Context;", - "mainBuggyLine": "396" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/Context.d.ts", - "codeContextStaerLine": "445", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createModuleContext(bundleName: string, moduleName: string): Context;", - "mainBuggyLine": "445" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/Context.d.ts", - "codeContextStaerLine": "460", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createSystemHspModuleResourceManager(bundleName: string, moduleName: string): resmgr.ResourceManager;", - "mainBuggyLine": "460" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/Context.d.ts", - "codeContextStaerLine": "559", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "createModuleResourceManager(bundleName: string, moduleName: string): resmgr.ResourceManager;", - "mainBuggyLine": "559" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/application/EventHub.d.ts", - "codeContextStaerLine": "84", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [on_string] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "on(event: string, callback: Function): void;", - "mainBuggyLine": "84" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/application/EventHub.d.ts", - "codeContextStaerLine": "122", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [off_string] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "off(event: string, callback?: Function): void;", - "mainBuggyLine": "122" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "../../api/application/EventHub.d.ts", - "codeContextStaerLine": "160", - "defectLevel": 2, - "defectType": "API_DEFINE_HUMP_04", - "description": "API check error of [naming errors]: This name [emit_string] should be named by small hump.", - "language": "ts", - "mainBuggyCode": "emit(event: string, ...args: Object[]): void;", - "mainBuggyLine": "160" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/FormExtensionContext.d.ts", - "codeContextStaerLine": "79", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startAbility(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "79" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/FormExtensionContext.d.ts", - "codeContextStaerLine": "114", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startAbility(want: Want): Promise;", - "mainBuggyLine": "114" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/FormExtensionContext.d.ts", - "codeContextStaerLine": "147", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "connectServiceExtensionAbility(want: Want, options: ConnectOptions): number;", - "mainBuggyLine": "147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/FormExtensionContext.d.ts", - "codeContextStaerLine": "147", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "connectServiceExtensionAbility(want: Want, options: ConnectOptions): number;", - "mainBuggyLine": "147" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/FormExtensionContext.d.ts", - "codeContextStaerLine": "163", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "disconnectServiceExtensionAbility(connection: number, callback: AsyncCallback): void;", - "mainBuggyLine": "163" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/FormExtensionContext.d.ts", - "codeContextStaerLine": "179", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "disconnectServiceExtensionAbility(connection: number): Promise;", - "mainBuggyLine": "179" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/MissionCallbacks.d.ts", - "codeContextStaerLine": "30", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface MissionCallback", - "mainBuggyLine": "30" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/MissionDeviceInfo.d.ts", - "codeContextStaerLine": "30", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface MissionDeviceInfo", - "mainBuggyLine": "30" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/MissionParameter.d.ts", - "codeContextStaerLine": "30", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface MissionParameter", - "mainBuggyLine": "30" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ServiceExtensionContext.d.ts", - "codeContextStaerLine": "133", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbility(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "133" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ServiceExtensionContext.d.ts", - "codeContextStaerLine": "227", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbility(want: Want, options: StartOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "227" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ServiceExtensionContext.d.ts", - "codeContextStaerLine": "325", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbility(want: Want, options?: StartOptions): Promise;", - "mainBuggyLine": "325" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ServiceExtensionContext.d.ts", - "codeContextStaerLine": "360", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "openLink(link: string, options?: OpenLinkOptions): Promise;", - "mainBuggyLine": "360" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ServiceExtensionContext.d.ts", - "codeContextStaerLine": "431", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbilityAsCaller(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "431" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ServiceExtensionContext.d.ts", - "codeContextStaerLine": "500", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbilityAsCaller(want: Want, options: StartOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "500" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ServiceExtensionContext.d.ts", - "codeContextStaerLine": "573", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbilityAsCaller(want: Want, options?: StartOptions): Promise;", - "mainBuggyLine": "573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ServiceExtensionContext.d.ts", - "codeContextStaerLine": "914", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startServiceExtensionAbility(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "914" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ServiceExtensionContext.d.ts", - "codeContextStaerLine": "997", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startServiceExtensionAbility(want: Want): Promise;", - "mainBuggyLine": "997" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ServiceExtensionContext.d.ts", - "codeContextStaerLine": "1223", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "stopServiceExtensionAbility(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "1223" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ServiceExtensionContext.d.ts", - "codeContextStaerLine": "1271", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "stopServiceExtensionAbility(want: Want): Promise;", - "mainBuggyLine": "1271" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ServiceExtensionContext.d.ts", - "codeContextStaerLine": "1493", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "connectServiceExtensionAbility(want: Want, options: ConnectOptions): number;", - "mainBuggyLine": "1493" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ServiceExtensionContext.d.ts", - "codeContextStaerLine": "1731", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startRecentAbility(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "1731" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ServiceExtensionContext.d.ts", - "codeContextStaerLine": "1790", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startRecentAbility(want: Want, options: StartOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "1790" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ServiceExtensionContext.d.ts", - "codeContextStaerLine": "1851", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startRecentAbility(want: Want, options?: StartOptions): Promise;", - "mainBuggyLine": "1851" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ServiceExtensionContext.d.ts", - "codeContextStaerLine": "1894", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "requestModalUIExtension(pickerWant: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "1894" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/ServiceExtensionContext.d.ts", - "codeContextStaerLine": "1937", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "requestModalUIExtension(pickerWant: Want): Promise;", - "mainBuggyLine": "1937" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "287", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbility(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "287" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "409", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbility(want: Want, options: StartOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "409" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "538", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbility(want: Want, options?: StartOptions): Promise;", - "mainBuggyLine": "538" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "571", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "openLink(link: string, options?: OpenLinkOptions, callback?: AsyncCallback): Promise;", - "mainBuggyLine": "571" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "642", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startAbilityAsCaller(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "642" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "642", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbilityAsCaller(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "642" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "711", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startAbilityAsCaller(want: Want, options: StartOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "711" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "711", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbilityAsCaller(want: Want, options: StartOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "711" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "784", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startAbilityAsCaller(want: Want, options?: StartOptions): Promise;", - "mainBuggyLine": "784" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "784", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbilityAsCaller(want: Want, options?: StartOptions): Promise;", - "mainBuggyLine": "784" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "890", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startAbilityByCall(want: Want): Promise;", - "mainBuggyLine": "890" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "957", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startAbilityByCallWithAccount(want: Want, accountId: number): Promise;", - "mainBuggyLine": "957" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "1031", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startAbilityWithAccount(want: Want, accountId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1031" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "1132", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startAbilityWithAccount(want: Want, accountId: number, options: StartOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "1132" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "1208", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startAbilityWithAccount(want: Want, accountId: number, options?: StartOptions): Promise;", - "mainBuggyLine": "1208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "1331", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbilityForResult(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "1331" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "1452", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbilityForResult(want: Want, options: StartOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "1452" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "1579", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbilityForResult(want: Want, options?: StartOptions): Promise;", - "mainBuggyLine": "1579" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "1676", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startAbilityForResultWithAccount(want: Want, accountId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "1676" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "1777", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startAbilityForResultWithAccount(\n want: Want,\n accountId: number,\n options: StartOptions,\n callback: AsyncCallback\n ): void;", - "mainBuggyLine": "1777" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "1882", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startAbilityForResultWithAccount(want: Want, accountId: number, options?: StartOptions): Promise;", - "mainBuggyLine": "1882" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "1962", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startServiceExtensionAbility(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "1962" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "1962", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startServiceExtensionAbility(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "1962" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "2042", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startServiceExtensionAbility(want: Want): Promise;", - "mainBuggyLine": "2042" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "2042", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startServiceExtensionAbility(want: Want): Promise;", - "mainBuggyLine": "2042" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "2128", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startServiceExtensionAbilityWithAccount(want: Want, accountId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "2128" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "2214", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startServiceExtensionAbilityWithAccount(want: Want, accountId: number): Promise;", - "mainBuggyLine": "2214" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "2262", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stopServiceExtensionAbility(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "2262" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "2262", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "stopServiceExtensionAbility(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "2262" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "2308", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stopServiceExtensionAbility(want: Want): Promise;", - "mainBuggyLine": "2308" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "2308", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "stopServiceExtensionAbility(want: Want): Promise;", - "mainBuggyLine": "2308" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "2359", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stopServiceExtensionAbilityWithAccount(want: Want, accountId: number, callback: AsyncCallback): void;", - "mainBuggyLine": "2359" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "2410", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "stopServiceExtensionAbilityWithAccount(want: Want, accountId: number): Promise;", - "mainBuggyLine": "2410" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "2629", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "connectServiceExtensionAbility(want: Want, options: ConnectOptions): number;", - "mainBuggyLine": "2629" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "2629", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "connectServiceExtensionAbility(want: Want, options: ConnectOptions): number;", - "mainBuggyLine": "2629" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "2681", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "connectServiceExtensionAbilityWithAccount(want: Want, accountId: number, options: ConnectOptions): number;", - "mainBuggyLine": "2681" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "2695", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "disconnectServiceExtensionAbility(connection: number, callback: AsyncCallback): void;", - "mainBuggyLine": "2695" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "2709", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "disconnectServiceExtensionAbility(connection: number): Promise;", - "mainBuggyLine": "2709" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "2792", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setMissionIcon(icon: image.PixelMap, callback: AsyncCallback): void;", - "mainBuggyLine": "2792" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "2821", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setMissionIcon(icon: image.PixelMap): Promise;", - "mainBuggyLine": "2821" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "3016", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startRecentAbility(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "3016" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "3016", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startRecentAbility(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "3016" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "3110", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startRecentAbility(want: Want, options: StartOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "3110" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "3110", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startRecentAbility(want: Want, options: StartOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "3110" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "3208", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "startRecentAbility(want: Want, options?: StartOptions): Promise;", - "mainBuggyLine": "3208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "3208", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startRecentAbility(want: Want, options?: StartOptions): Promise;", - "mainBuggyLine": "3208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "3264", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "requestDialogService(want: Want, result: AsyncCallback): void;", - "mainBuggyLine": "3264" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "3264", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "requestDialogService(want: Want, result: AsyncCallback): void;", - "mainBuggyLine": "3264" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "3321", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "requestDialogService(want: Want): Promise;", - "mainBuggyLine": "3321" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "3321", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "requestDialogService(want: Want): Promise;", - "mainBuggyLine": "3321" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "3477", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "requestModalUIExtension(pickerWant: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "3477" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "3477", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "requestModalUIExtension(pickerWant: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "3477" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "3518", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "requestModalUIExtension(pickerWant: Want): Promise;", - "mainBuggyLine": "3518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "3518", - "defectLevel": 2, - "defectType": "API_DOC_PARAM_02", - "description": "API check error of [wrong value]: The value of the [1] [param] tag is incorrect. Please check if it matches the [1] parameter name.", - "language": "ts", - "mainBuggyCode": "requestModalUIExtension(pickerWant: Want): Promise;", - "mainBuggyLine": "3518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "3571", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "showAbility(): Promise;", - "mainBuggyLine": "3571" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts", - "codeContextStaerLine": "3585", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "hideAbility(): Promise;", - "mainBuggyLine": "3585" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIExtensionContext.d.ts", - "codeContextStaerLine": "106", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbility(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIExtensionContext.d.ts", - "codeContextStaerLine": "173", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbility(want: Want, options: StartOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "173" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIExtensionContext.d.ts", - "codeContextStaerLine": "244", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbility(want: Want, options?: StartOptions): Promise;", - "mainBuggyLine": "244" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIExtensionContext.d.ts", - "codeContextStaerLine": "278", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "openLink(link: string, options?: OpenLinkOptions, callback?: AsyncCallback): Promise;", - "mainBuggyLine": "278" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIExtensionContext.d.ts", - "codeContextStaerLine": "347", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbilityForResult(want: Want, callback: AsyncCallback): void;", - "mainBuggyLine": "347" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIExtensionContext.d.ts", - "codeContextStaerLine": "414", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbilityForResult(want: Want, options: StartOptions, callback: AsyncCallback): void;", - "mainBuggyLine": "414" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIExtensionContext.d.ts", - "codeContextStaerLine": "485", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbilityForResult(want: Want, options?: StartOptions): Promise;", - "mainBuggyLine": "485" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIExtensionContext.d.ts", - "codeContextStaerLine": "512", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "startAbilityForResultAsCaller(want: Want, options?: StartOptions): Promise;", - "mainBuggyLine": "512" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/application/UIExtensionContext.d.ts", - "codeContextStaerLine": "541", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_05", - "description": "API check error of [wrong value]: JSDoc tag validity verification failed. Please confirm if the [permission] tag is missing.", - "language": "ts", - "mainBuggyCode": "connectServiceExtensionAbility(want: Want, options: ConnectOptions): number;", - "mainBuggyLine": "541" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/AlphabetIndexerModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class AlphabetIndexerModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/AttributeUpdater.d.ts", - "codeContextStaerLine": "27", - "defectLevel": 2, - "defectType": "API_DOC_RETURNS_06", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [returns] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": "declare type Initializer = () => T;", - "mainBuggyLine": "27" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/AttributeUpdater.d.ts", - "codeContextStaerLine": "27", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "declare type Initializer = () => T;", - "mainBuggyLine": "27" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/AttributeUpdater.d.ts", - "codeContextStaerLine": "37", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class AttributeUpdater", - "mainBuggyLine": "37" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/BlankModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class BlankModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/BuilderNode.d.ts", - "codeContextStaerLine": "281", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "reuse(param?: Object): void;", - "mainBuggyLine": "281" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/BuilderNode.d.ts", - "codeContextStaerLine": "290", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "recycle(): void;", - "mainBuggyLine": "290" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/ButtonModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class ButtonModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/CalendarPickerModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class CalendarPickerModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/CheckboxGroupModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class CheckboxGroupModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/CheckboxModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class CheckboxModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/ColumnModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class ColumnModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/ColumnSplitModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class ColumnSplitModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/CommonModifier.d.ts", - "codeContextStaerLine": "31", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class CommonModifier", - "mainBuggyLine": "31" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/ComponentContent.d.ts", - "codeContextStaerLine": "79", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "reuse(param?: Object): void;", - "mainBuggyLine": "79" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/ComponentContent.d.ts", - "codeContextStaerLine": "88", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "recycle(): void;", - "mainBuggyLine": "88" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/CounterModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class CounterModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/DataPanelModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class DataPanelModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/DatePickerModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class DatePickerModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/DividerModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class DividerModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FormComponentModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class FormComponentModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "132", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isModifiable(): boolean;", - "mainBuggyLine": "132" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "143", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "appendChild(node: FrameNode): void;", - "mainBuggyLine": "143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "155", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "insertChildAfter(child: FrameNode, sibling: FrameNode | null): void;", - "mainBuggyLine": "155" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "166", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "removeChild(node: FrameNode): void;", - "mainBuggyLine": "166" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "176", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "clearChildren(): void;", - "mainBuggyLine": "176" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "187", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getChild(index: number): FrameNode | null;", - "mainBuggyLine": "187" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "198", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getFirstChild(): FrameNode | null;", - "mainBuggyLine": "198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "208", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getNextSibling(): FrameNode | null;", - "mainBuggyLine": "208" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "218", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPreviousSibling(): FrameNode | null;", - "mainBuggyLine": "218" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "228", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getParent(): FrameNode | null;", - "mainBuggyLine": "228" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "238", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getChildrenCount(): number;", - "mainBuggyLine": "238" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "247", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dispose(): void;", - "mainBuggyLine": "247" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "257", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPositionToWindow(): Position;", - "mainBuggyLine": "257" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "267", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPositionToParent(): Position;", - "mainBuggyLine": "267" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "277", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getMeasuredSize(): Size;", - "mainBuggyLine": "277" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "287", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getLayoutPosition(): Position;", - "mainBuggyLine": "287" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "297", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getUserConfigBorderWidth(): Edges;", - "mainBuggyLine": "297" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "307", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getUserConfigPadding(): Edges;", - "mainBuggyLine": "307" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "317", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getUserConfigMargin(): Edges;", - "mainBuggyLine": "317" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "327", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getUserConfigSize(): SizeT;", - "mainBuggyLine": "327" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "337", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getId(): string;", - "mainBuggyLine": "337" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "347", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getUniqueId(): number;", - "mainBuggyLine": "347" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "358", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getNodeType(): string;", - "mainBuggyLine": "358" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "368", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getOpacity(): number;", - "mainBuggyLine": "368" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "378", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isVisible(): boolean;", - "mainBuggyLine": "378" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "388", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isClipToFrame(): boolean;", - "mainBuggyLine": "388" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "398", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isAttached(): boolean;", - "mainBuggyLine": "398" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "408", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getInspectorInfo(): Object;", - "mainBuggyLine": "408" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "419", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getCustomProperty(name: string): Object | undefined;", - "mainBuggyLine": "419" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "449", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onDraw?(context: DrawContext): void;", - "mainBuggyLine": "449" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "461", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onMeasure(constraint: LayoutConstraint): void;", - "mainBuggyLine": "461" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "472", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "onLayout(position: Position): void;", - "mainBuggyLine": "472" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "482", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setMeasuredSize(size: Size): void;", - "mainBuggyLine": "482" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "492", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setLayoutPosition(position: Position): void;", - "mainBuggyLine": "492" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "503", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "measure(constraint: LayoutConstraint): void;", - "mainBuggyLine": "503" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "515", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "layout(position: Position): void;", - "mainBuggyLine": "515" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "524", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setNeedsLayout(): void;", - "mainBuggyLine": "524" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "533", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "invalidate(): void;", - "mainBuggyLine": "533" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "543", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPositionToScreen(): Position;", - "mainBuggyLine": "543" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "553", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPositionToWindowWithTransform(): Position;", - "mainBuggyLine": "553" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "563", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPositionToParentWithTransform(): Position;", - "mainBuggyLine": "563" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "573", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getPositionToScreenWithTransform(): Position;", - "mainBuggyLine": "573" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "582", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "disposeTree(): void;", - "mainBuggyLine": "582" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "592", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "addComponentContent(content: ComponentContent): void;", - "mainBuggyLine": "592" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "603", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface TypedFrameNode", - "mainBuggyLine": "603" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "641", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type Text = TypedFrameNode;", - "mainBuggyLine": "641" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "662", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type Column = TypedFrameNode;", - "mainBuggyLine": "662" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "683", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type Row = TypedFrameNode;", - "mainBuggyLine": "683" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "704", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type Stack = TypedFrameNode;", - "mainBuggyLine": "704" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "725", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type GridRow = TypedFrameNode;", - "mainBuggyLine": "725" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "746", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type GridCol = TypedFrameNode;", - "mainBuggyLine": "746" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "767", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type Flex = TypedFrameNode;", - "mainBuggyLine": "767" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "788", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type Swiper = TypedFrameNode;", - "mainBuggyLine": "788" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "809", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type Progress = TypedFrameNode;", - "mainBuggyLine": "809" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "830", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type Scroll = TypedFrameNode;", - "mainBuggyLine": "830" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "851", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type RelativeContainer = TypedFrameNode;", - "mainBuggyLine": "851" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "872", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type Divider = TypedFrameNode;", - "mainBuggyLine": "872" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "893", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type LoadingProgress = TypedFrameNode;", - "mainBuggyLine": "893" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "914", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type Search = TypedFrameNode;", - "mainBuggyLine": "914" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "935", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type Blank = TypedFrameNode;", - "mainBuggyLine": "935" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "956", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type Image = TypedFrameNode;", - "mainBuggyLine": "956" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "977", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type List = TypedFrameNode;", - "mainBuggyLine": "977" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts", - "codeContextStaerLine": "998", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_01", - "description": "API check error of [wrong value]: The [typedef] tag value is incorrect. Please check if it matches the interface name or type content.", - "language": "ts", - "mainBuggyCode": "type ListItem = TypedFrameNode;", - "mainBuggyLine": "998" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/GaugeModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class GaugeModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/Graphics.d.ts", - "codeContextStaerLine": "320", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type Matrix4 = [\n number,\n number,\n number,\n number,\n number,\n number,\n number,\n number,\n number,\n number,\n number,\n number,\n number,\n number,\n number,\n number\n];", - "mainBuggyLine": "320" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/Graphics.d.ts", - "codeContextStaerLine": "354", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type Offset = Vector2;", - "mainBuggyLine": "354" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/Graphics.d.ts", - "codeContextStaerLine": "363", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type Position = Vector2;", - "mainBuggyLine": "363" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/Graphics.d.ts", - "codeContextStaerLine": "389", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type Pivot = Vector2;", - "mainBuggyLine": "389" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/Graphics.d.ts", - "codeContextStaerLine": "406", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type Scale = Vector2;", - "mainBuggyLine": "406" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/Graphics.d.ts", - "codeContextStaerLine": "423", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type Translation = Vector2;", - "mainBuggyLine": "423" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/Graphics.d.ts", - "codeContextStaerLine": "440", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type Rotation = Vector3;", - "mainBuggyLine": "440" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/Graphics.d.ts", - "codeContextStaerLine": "983", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type CornerRadius = Corners;", - "mainBuggyLine": "983" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/Graphics.d.ts", - "codeContextStaerLine": "992", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type BorderRadiuses = Corners;", - "mainBuggyLine": "992" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/Graphics.d.ts", - "codeContextStaerLine": "1001", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type Rect = common2D.Rect;", - "mainBuggyLine": "1001" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/GridColModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class GridColModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/GridItemModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class GridItemModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/GridModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class GridModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/GridRowModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class GridRowModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/HyperlinkModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class HyperlinkModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/ImageAnimatorModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class ImageAnimatorModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/ImageModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class ImageModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/ImageSpanModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class ImageSpanModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/LineModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class LineModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/ListItemGroupModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class ListItemGroupModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/ListItemModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class ListItemModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/ListModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class ListModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/LoadingProgressModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class LoadingProgressModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/MarqueeModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class MarqueeModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/MenuItemModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class MenuItemModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/MenuModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class MenuModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/NavDestinationModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class NavDestinationModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/NavigationModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class NavigationModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/NavigatorModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class NavigatorModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/NavRouterModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class NavRouterModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/PanelModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class PanelModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/PathModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class PathModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/PatternLockModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class PatternLockModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/PolygonModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class PolygonModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/PolylineModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class PolylineModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/ProgressModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class ProgressModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/QRCodeModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class QRCodeModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/RadioModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class RadioModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/RatingModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class RatingModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/RectModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class RectModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/RefreshModifier.d.ts", - "codeContextStaerLine": "33", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class RefreshModifier", - "mainBuggyLine": "33" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/RenderNode.d.ts", - "codeContextStaerLine": "973", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "dispose(): void;", - "mainBuggyLine": "973" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/RichEditorModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class RichEditorModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/RowModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class RowModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/RowSplitModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class RowSplitModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/ScrollModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class ScrollModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/SearchModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class SearchModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/SelectModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class SelectModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/ShapeModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class ShapeModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/SideBarContainerModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class SideBarContainerModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/SliderModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class SliderModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/SpanModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class SpanModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/StackModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class StackModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/StepperItemModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class StepperItemModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/SwiperModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class SwiperModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/SymbolGlyphModifier.d.ts", - "codeContextStaerLine": "29", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class SymbolGlyphModifier", - "mainBuggyLine": "29" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/TabsModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class TabsModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/TextAreaModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class TextAreaModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/TextClockModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class TextClockModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/TextInputModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class TextInputModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/TextModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class TextModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/TextPickerModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class TextPickerModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/TextTimerModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class TextTimerModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/TimePickerModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class TimePickerModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/ToggleModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class ToggleModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/VideoModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class VideoModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/arkui/WaterFlowModifier.d.ts", - "codeContextStaerLine": "32", - "defectLevel": 2, - "defectType": "API_DOC_IMPLEMENTS_05", - "description": "API check error of [wrong value]: The [implements] tag value is incorrect. Please check if the tag value matches the inherited class name.", - "language": "ts", - "mainBuggyCode": " export declare class WaterFlowModifier", - "mainBuggyLine": "32" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "41", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly bundleName: string;", - "mainBuggyLine": "41" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "49", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly name: string;", - "mainBuggyLine": "49" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "57", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly label: string;", - "mainBuggyLine": "57" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "65", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly description: string;", - "mainBuggyLine": "65" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "73", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly icon: string;", - "mainBuggyLine": "73" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "81", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly labelId: number;", - "mainBuggyLine": "81" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "89", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly descriptionId: number;", - "mainBuggyLine": "89" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "97", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly iconId: number;", - "mainBuggyLine": "97" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "105", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly moduleName: string;", - "mainBuggyLine": "105" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "113", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly process: string;", - "mainBuggyLine": "113" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "122", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly targetAbility: string;", - "mainBuggyLine": "122" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "131", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly backgroundModes: number;", - "mainBuggyLine": "131" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "139", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly isVisible: boolean;", - "mainBuggyLine": "139" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "148", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly formEnabled: boolean;", - "mainBuggyLine": "148" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "157", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly type: bundle.AbilityType;", - "mainBuggyLine": "157" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "166", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly subType: bundle.AbilitySubType;", - "mainBuggyLine": "166" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "174", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly orientation: bundle.DisplayOrientation;", - "mainBuggyLine": "174" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "182", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly launchMode: bundle.LaunchMode;", - "mainBuggyLine": "182" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "190", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly permissions: Array;", - "mainBuggyLine": "190" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "198", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly deviceTypes: Array;", - "mainBuggyLine": "198" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "206", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly deviceCapabilities: Array;", - "mainBuggyLine": "206" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "215", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly readPermission: string;", - "mainBuggyLine": "215" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "224", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly writePermission: string;", - "mainBuggyLine": "224" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "232", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly applicationInfo: ApplicationInfo;", - "mainBuggyLine": "232" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "241", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly uri: string;", - "mainBuggyLine": "241" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "249", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly metaData: Array;", - "mainBuggyLine": "249" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts", - "codeContextStaerLine": "257", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly enabled: boolean;", - "mainBuggyLine": "257" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts", - "codeContextStaerLine": "40", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly name: string;", - "mainBuggyLine": "40" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts", - "codeContextStaerLine": "48", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly description: string;", - "mainBuggyLine": "48" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts", - "codeContextStaerLine": "56", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly descriptionId: number;", - "mainBuggyLine": "56" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts", - "codeContextStaerLine": "64", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly systemApp: boolean;", - "mainBuggyLine": "64" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts", - "codeContextStaerLine": "72", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly enabled: boolean;", - "mainBuggyLine": "72" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts", - "codeContextStaerLine": "80", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly label: string;", - "mainBuggyLine": "80" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts", - "codeContextStaerLine": "89", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly labelId: string;", - "mainBuggyLine": "89" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts", - "codeContextStaerLine": "97", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly icon: string;", - "mainBuggyLine": "97" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts", - "codeContextStaerLine": "106", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly iconId: string;", - "mainBuggyLine": "106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts", - "codeContextStaerLine": "114", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly process: string;", - "mainBuggyLine": "114" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts", - "codeContextStaerLine": "122", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly supportedModes: number;", - "mainBuggyLine": "122" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts", - "codeContextStaerLine": "130", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly moduleSourceDirs: Array;", - "mainBuggyLine": "130" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts", - "codeContextStaerLine": "138", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly permissions: Array;", - "mainBuggyLine": "138" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts", - "codeContextStaerLine": "146", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly moduleInfos: Array;", - "mainBuggyLine": "146" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts", - "codeContextStaerLine": "154", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly entryDir: string;", - "mainBuggyLine": "154" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts", - "codeContextStaerLine": "162", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly codePath: string;", - "mainBuggyLine": "162" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts", - "codeContextStaerLine": "170", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly metaData: Map>;", - "mainBuggyLine": "170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts", - "codeContextStaerLine": "178", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly removable: boolean;", - "mainBuggyLine": "178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts", - "codeContextStaerLine": "186", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly accessTokenId: number;", - "mainBuggyLine": "186" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts", - "codeContextStaerLine": "194", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly uid: number;", - "mainBuggyLine": "194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts", - "codeContextStaerLine": "202", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly entityType: string;", - "mainBuggyLine": "202" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "41", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilities: Array;", - "mainBuggyLine": "41" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "49", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "when: string;", - "mainBuggyLine": "49" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "68", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "68" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "76", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "reason: string;", - "mainBuggyLine": "76" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "84", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "usedScene: UsedScene;", - "mainBuggyLine": "84" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "103", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly name: string;", - "mainBuggyLine": "103" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "111", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly type: string;", - "mainBuggyLine": "111" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "120", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly appId: string;", - "mainBuggyLine": "120" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "130", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly uid: number;", - "mainBuggyLine": "130" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "138", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly installTime: number;", - "mainBuggyLine": "138" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "146", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly updateTime: number;", - "mainBuggyLine": "146" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "154", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly appInfo: ApplicationInfo;", - "mainBuggyLine": "154" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "162", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly abilityInfos: Array;", - "mainBuggyLine": "162" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "170", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly reqPermissions: Array;", - "mainBuggyLine": "170" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "178", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly reqPermissionDetails: Array;", - "mainBuggyLine": "178" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "186", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly vendor: string;", - "mainBuggyLine": "186" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "194", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly versionCode: number;", - "mainBuggyLine": "194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "202", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly versionName: string;", - "mainBuggyLine": "202" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "210", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly compatibleVersion: number;", - "mainBuggyLine": "210" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "218", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly targetVersion: number;", - "mainBuggyLine": "218" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "226", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly isCompressNativeLibs: boolean;", - "mainBuggyLine": "226" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "234", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly hapModuleInfos: Array;", - "mainBuggyLine": "234" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "242", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly entryModuleName: string;", - "mainBuggyLine": "242" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "250", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly cpuAbi: string;", - "mainBuggyLine": "250" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "258", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly isSilentInstallation: string;", - "mainBuggyLine": "258" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "266", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly minCompatibleVersionCode: number;", - "mainBuggyLine": "266" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "274", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly entryInstallationFree: boolean;", - "mainBuggyLine": "274" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts", - "codeContextStaerLine": "282", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly reqPermissionStates: Array;", - "mainBuggyLine": "282" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInstaller.d.ts", - "codeContextStaerLine": "43", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "userId: number;", - "mainBuggyLine": "43" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInstaller.d.ts", - "codeContextStaerLine": "53", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "installFlag: number;", - "mainBuggyLine": "53" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInstaller.d.ts", - "codeContextStaerLine": "63", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isKeepData: boolean;", - "mainBuggyLine": "63" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInstaller.d.ts", - "codeContextStaerLine": "83", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "status: bundle.InstallErrorCode;", - "mainBuggyLine": "83" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInstaller.d.ts", - "codeContextStaerLine": "92", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "statusMessage: string;", - "mainBuggyLine": "92" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleStatusCallback.d.ts", - "codeContextStaerLine": "34", - "defectLevel": 2, - "defectType": "API_DOC_PERMISSION_03", - "description": "API check error of [wrong scene]: JSDoc label validity verification failed. The [permission] label is not allowed. Please check the label usage method.", - "language": "ts", - "mainBuggyCode": " export interface BundleStatusCallback", - "mainBuggyLine": "34" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleStatusCallback.d.ts", - "codeContextStaerLine": "44", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "add: (bundleName: string, userId: number) => void;", - "mainBuggyLine": "44" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleStatusCallback.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "update: (bundleName: string, userId: number) => void;", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleStatusCallback.d.ts", - "codeContextStaerLine": "66", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "remove: (bundleName: string, userId: number) => void;", - "mainBuggyLine": "66" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/customizeData.d.ts", - "codeContextStaerLine": "37", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "name: string;", - "mainBuggyLine": "37" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/customizeData.d.ts", - "codeContextStaerLine": "45", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "value: string;", - "mainBuggyLine": "45" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/customizeData.d.ts", - "codeContextStaerLine": "53", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "extra: string;", - "mainBuggyLine": "53" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/elementName.d.ts", - "codeContextStaerLine": "43", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId?: string;", - "mainBuggyLine": "43" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/elementName.d.ts", - "codeContextStaerLine": "53", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName: string;", - "mainBuggyLine": "53" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/elementName.d.ts", - "codeContextStaerLine": "63", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityName: string;", - "mainBuggyLine": "63" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/elementName.d.ts", - "codeContextStaerLine": "73", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "uri?: string;", - "mainBuggyLine": "73" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/elementName.d.ts", - "codeContextStaerLine": "83", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "shortName?: string;", - "mainBuggyLine": "83" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/hapModuleInfo.d.ts", - "codeContextStaerLine": "39", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly name: string;", - "mainBuggyLine": "39" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/hapModuleInfo.d.ts", - "codeContextStaerLine": "46", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly description: string;", - "mainBuggyLine": "46" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/hapModuleInfo.d.ts", - "codeContextStaerLine": "53", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly descriptionId: number;", - "mainBuggyLine": "53" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/hapModuleInfo.d.ts", - "codeContextStaerLine": "60", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly icon: string;", - "mainBuggyLine": "60" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/hapModuleInfo.d.ts", - "codeContextStaerLine": "67", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly label: string;", - "mainBuggyLine": "67" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/hapModuleInfo.d.ts", - "codeContextStaerLine": "74", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly labelId: number;", - "mainBuggyLine": "74" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/hapModuleInfo.d.ts", - "codeContextStaerLine": "81", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly iconId: number;", - "mainBuggyLine": "81" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/hapModuleInfo.d.ts", - "codeContextStaerLine": "88", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly backgroundImg: string;", - "mainBuggyLine": "88" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/hapModuleInfo.d.ts", - "codeContextStaerLine": "95", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly supportedModes: number;", - "mainBuggyLine": "95" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/hapModuleInfo.d.ts", - "codeContextStaerLine": "102", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly reqCapabilities: Array;", - "mainBuggyLine": "102" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/hapModuleInfo.d.ts", - "codeContextStaerLine": "109", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly deviceTypes: Array;", - "mainBuggyLine": "109" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/hapModuleInfo.d.ts", - "codeContextStaerLine": "116", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly abilityInfo: Array;", - "mainBuggyLine": "116" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/hapModuleInfo.d.ts", - "codeContextStaerLine": "123", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly moduleName: string;", - "mainBuggyLine": "123" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/hapModuleInfo.d.ts", - "codeContextStaerLine": "130", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly mainAbilityName: string;", - "mainBuggyLine": "130" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/hapModuleInfo.d.ts", - "codeContextStaerLine": "137", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly installationFree: boolean;", - "mainBuggyLine": "137" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/launcherAbilityInfo.d.ts", - "codeContextStaerLine": "47", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly applicationInfo: ApplicationInfo;", - "mainBuggyLine": "47" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/launcherAbilityInfo.d.ts", - "codeContextStaerLine": "57", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly elementName: ElementName;", - "mainBuggyLine": "57" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/launcherAbilityInfo.d.ts", - "codeContextStaerLine": "67", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly labelId: number;", - "mainBuggyLine": "67" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/launcherAbilityInfo.d.ts", - "codeContextStaerLine": "77", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly iconId: number;", - "mainBuggyLine": "77" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/launcherAbilityInfo.d.ts", - "codeContextStaerLine": "87", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly userId: number;", - "mainBuggyLine": "87" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/launcherAbilityInfo.d.ts", - "codeContextStaerLine": "97", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly installTime: number;", - "mainBuggyLine": "97" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/moduleInfo.d.ts", - "codeContextStaerLine": "39", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly moduleName: string;", - "mainBuggyLine": "39" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/moduleInfo.d.ts", - "codeContextStaerLine": "49", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly moduleSourceDir: string;", - "mainBuggyLine": "49" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/PermissionDef.d.ts", - "codeContextStaerLine": "39", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "permissionName: string;", - "mainBuggyLine": "39" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/PermissionDef.d.ts", - "codeContextStaerLine": "48", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "grantMode: number;", - "mainBuggyLine": "48" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/PermissionDef.d.ts", - "codeContextStaerLine": "57", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "labelId: number;", - "mainBuggyLine": "57" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/PermissionDef.d.ts", - "codeContextStaerLine": "66", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "descriptionId: number;", - "mainBuggyLine": "66" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/remoteAbilityInfo.d.ts", - "codeContextStaerLine": "41", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly elementName: ElementName;", - "mainBuggyLine": "41" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/remoteAbilityInfo.d.ts", - "codeContextStaerLine": "50", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly label: string;", - "mainBuggyLine": "50" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/remoteAbilityInfo.d.ts", - "codeContextStaerLine": "59", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly icon: string;", - "mainBuggyLine": "59" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/shortcutInfo.d.ts", - "codeContextStaerLine": "39", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly targetBundle: string;", - "mainBuggyLine": "39" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/shortcutInfo.d.ts", - "codeContextStaerLine": "46", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly targetClass: string;", - "mainBuggyLine": "46" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/shortcutInfo.d.ts", - "codeContextStaerLine": "63", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly id: string;", - "mainBuggyLine": "63" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/shortcutInfo.d.ts", - "codeContextStaerLine": "69", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly bundleName: string;", - "mainBuggyLine": "69" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/shortcutInfo.d.ts", - "codeContextStaerLine": "75", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly hostAbility: string;", - "mainBuggyLine": "75" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/shortcutInfo.d.ts", - "codeContextStaerLine": "81", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly icon: string;", - "mainBuggyLine": "81" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/shortcutInfo.d.ts", - "codeContextStaerLine": "87", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly iconId: number;", - "mainBuggyLine": "87" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/shortcutInfo.d.ts", - "codeContextStaerLine": "93", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly label: string;", - "mainBuggyLine": "93" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/shortcutInfo.d.ts", - "codeContextStaerLine": "99", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly labelId: number;", - "mainBuggyLine": "99" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/shortcutInfo.d.ts", - "codeContextStaerLine": "105", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly disableMessage: string;", - "mainBuggyLine": "105" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/shortcutInfo.d.ts", - "codeContextStaerLine": "111", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly wants: Array;", - "mainBuggyLine": "111" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/shortcutInfo.d.ts", - "codeContextStaerLine": "118", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly isStatic?: boolean;", - "mainBuggyLine": "118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/shortcutInfo.d.ts", - "codeContextStaerLine": "125", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly isHomeShortcut?: boolean;", - "mainBuggyLine": "125" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundle/shortcutInfo.d.ts", - "codeContextStaerLine": "132", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly isEnabled?: boolean;", - "mainBuggyLine": "132" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundleManager/AbilityInfo.d.ts", - "codeContextStaerLine": "327", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly type: bundleManager.AbilityType;", - "mainBuggyLine": "327" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundleManager/AbilityInfo.d.ts", - "codeContextStaerLine": "397", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly readPermission: string;", - "mainBuggyLine": "397" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundleManager/AbilityInfo.d.ts", - "codeContextStaerLine": "407", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly writePermission: string;", - "mainBuggyLine": "407" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundleManager/AbilityInfo.d.ts", - "codeContextStaerLine": "417", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly uri: string;", - "mainBuggyLine": "417" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundleManager/AbilityInfo.d.ts", - "codeContextStaerLine": "569", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly appIndex: number;", - "mainBuggyLine": "569" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundleManager/ApplicationInfo.d.ts", - "codeContextStaerLine": "319", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly metadata: Map>;", - "mainBuggyLine": "319" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundleManager/ApplicationInfo.d.ts", - "codeContextStaerLine": "546", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly nativeLibraryPath: string;", - "mainBuggyLine": "546" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundleManager/ApplicationInfo.d.ts", - "codeContextStaerLine": "556", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly multiAppMode: MultiAppMode;", - "mainBuggyLine": "556" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundleManager/ApplicationInfo.d.ts", - "codeContextStaerLine": "566", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly appIndex: number;", - "mainBuggyLine": "566" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundleManager/BundleInfo.d.ts", - "codeContextStaerLine": "281", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly appIndex: number;", - "mainBuggyLine": "281" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundleManager/DispatchInfo.d.ts", - "codeContextStaerLine": "37", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly version: string;", - "mainBuggyLine": "37" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundleManager/DispatchInfo.d.ts", - "codeContextStaerLine": "46", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly dispatchAPIVersion: string;", - "mainBuggyLine": "46" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundleManager/ExtensionAbilityInfo.d.ts", - "codeContextStaerLine": "310", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly appIndex: number;", - "mainBuggyLine": "310" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/bundleManager/HapModuleInfo.d.ts", - "codeContextStaerLine": "471", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "readonly nativeLibraryPath: string;", - "mainBuggyLine": "471" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/canvaspattern.d.ts", - "codeContextStaerLine": "45", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " export interface CanvasPattern", - "mainBuggyLine": "45" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/canvaspattern.d.ts", - "codeContextStaerLine": "70", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "setTransform(transform?: Matrix2D): void;", - "mainBuggyLine": "70" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/canvaspattern.d.ts", - "codeContextStaerLine": "94", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": " export class Matrix2D", - "mainBuggyLine": "94" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/canvaspattern.d.ts", - "codeContextStaerLine": "119", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "scaleX?: number;", - "mainBuggyLine": "119" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/canvaspattern.d.ts", - "codeContextStaerLine": "145", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "rotateY?: number;", - "mainBuggyLine": "145" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/canvaspattern.d.ts", - "codeContextStaerLine": "171", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "rotateX?: number;", - "mainBuggyLine": "171" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/canvaspattern.d.ts", - "codeContextStaerLine": "197", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "scaleY?: number;", - "mainBuggyLine": "197" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/canvaspattern.d.ts", - "codeContextStaerLine": "223", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "translateX?: number;", - "mainBuggyLine": "223" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/canvaspattern.d.ts", - "codeContextStaerLine": "249", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "translateY?: number;", - "mainBuggyLine": "249" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/canvaspattern.d.ts", - "codeContextStaerLine": "278", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "identity(): Matrix2D;", - "mainBuggyLine": "278" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/canvaspattern.d.ts", - "codeContextStaerLine": "307", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "invert(): Matrix2D;", - "mainBuggyLine": "307" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/canvaspattern.d.ts", - "codeContextStaerLine": "339", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "multiply(other?: Matrix2D): Matrix2D;", - "mainBuggyLine": "339" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/canvaspattern.d.ts", - "codeContextStaerLine": "371", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "rotate(rx?: number, ry?: number): Matrix2D;", - "mainBuggyLine": "371" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/canvaspattern.d.ts", - "codeContextStaerLine": "403", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "translate(tx?: number, ty?: number): Matrix2D;", - "mainBuggyLine": "403" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/canvaspattern.d.ts", - "codeContextStaerLine": "435", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "scale(sx?: number, sy?: number): Matrix2D;", - "mainBuggyLine": "435" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/canvaspattern.d.ts", - "codeContextStaerLine": "458", - "defectLevel": 2, - "defectType": "API_DOC_SINCE_02", - "description": "API check error of [wrong order]: JSDoc label order error, please adjust the order of [since] labels.", - "language": "ts", - "mainBuggyCode": "constructor();", - "mainBuggyLine": "458" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "34", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "code: number;", - "mainBuggyLine": "34" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "42", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "data: object;", - "mainBuggyLine": "42" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "58", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "58" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "66", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName: string;", - "mainBuggyLine": "66" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "74", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityName: string;", - "mainBuggyLine": "74" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "82", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "message: string;", - "mainBuggyLine": "82" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "98", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName: string;", - "mainBuggyLine": "98" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "106", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityName: string;", - "mainBuggyLine": "106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "114", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "messageCode: number;", - "mainBuggyLine": "114" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "124", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityType: number;", - "mainBuggyLine": "124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "132", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "data?: object;", - "mainBuggyLine": "132" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "142", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "syncOption?: number;", - "mainBuggyLine": "142" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "158", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName: string;", - "mainBuggyLine": "158" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "166", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityName: string;", - "mainBuggyLine": "166" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "174", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "messageCode: number;", - "mainBuggyLine": "174" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "184", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityType: number;", - "mainBuggyLine": "184" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "194", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "syncOption?: number;", - "mainBuggyLine": "194" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "210", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "210" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "218", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName: string;", - "mainBuggyLine": "218" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "226", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityName: string;", - "mainBuggyLine": "226" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "236", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "message?: string;", - "mainBuggyLine": "236" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "244", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: () => void;", - "mainBuggyLine": "244" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "252", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "252" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "260", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "260" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "276", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: (data: SubscribeMessageResponse) => void;", - "mainBuggyLine": "276" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "284", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "284" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "300", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName?: string;", - "mainBuggyLine": "300" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "308", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityName?: string;", - "mainBuggyLine": "308" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "316", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "entities?: Array;", - "mainBuggyLine": "316" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "324", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "action?: string;", - "mainBuggyLine": "324" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "334", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceType?: number;", - "mainBuggyLine": "334" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "342", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "data?: object;", - "mainBuggyLine": "342" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "350", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "flag?: number;", - "mainBuggyLine": "350" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "358", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "url?: string;", - "mainBuggyLine": "358" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "374", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "code: number;", - "mainBuggyLine": "374" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts", - "codeContextStaerLine": "382", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "result: object;", - "mainBuggyLine": "382" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "769", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface AnimationElement", - "mainBuggyLine": "769" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "895", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface ListElement", - "mainBuggyLine": "895" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "1014", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface SwiperElement", - "mainBuggyLine": "1014" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "1102", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface CameraElement", - "mainBuggyLine": "1102" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "1120", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface WebElement", - "mainBuggyLine": "1120" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "1137", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface DialogElement", - "mainBuggyLine": "1137" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "1161", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface ImageAnimatorElement", - "mainBuggyLine": "1161" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "1211", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface MarqueeElement", - "mainBuggyLine": "1211" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "1236", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface MenuElement", - "mainBuggyLine": "1236" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "1260", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface ChartElement", - "mainBuggyLine": "1260" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "1298", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface InputElement", - "mainBuggyLine": "1298" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "1335", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface ButtonElement", - "mainBuggyLine": "1335" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "1357", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface TextAreaElement", - "mainBuggyLine": "1357" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "1375", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface PickerElement", - "mainBuggyLine": "1375" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "1392", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface VideoElement", - "mainBuggyLine": "1392" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "1482", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "getLineDash: Array;", - "mainBuggyLine": "1482" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "2683", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "restore: () => void;", - "mainBuggyLine": "2683" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "2691", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "save: () => void;", - "mainBuggyLine": "2691" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "3057", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface CanvasElement", - "mainBuggyLine": "3057" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "3217", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface DivElement", - "mainBuggyLine": "3217" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "3502", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "unicodeSetting: object;", - "mainBuggyLine": "3502" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "3698", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type DefaultData = object;", - "mainBuggyLine": "3698" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts", - "codeContextStaerLine": "3706", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type CombinedOptions = object & Options & ThisType;", - "mainBuggyLine": "3706" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/lite/featureability.d.ts", - "codeContextStaerLine": "34", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "34" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/lite/featureability.d.ts", - "codeContextStaerLine": "42", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName: string;", - "mainBuggyLine": "42" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/lite/featureability.d.ts", - "codeContextStaerLine": "50", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityName: string;", - "mainBuggyLine": "50" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/lite/featureability.d.ts", - "codeContextStaerLine": "58", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "message: string;", - "mainBuggyLine": "58" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/lite/featureability.d.ts", - "codeContextStaerLine": "74", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "deviceId: string;", - "mainBuggyLine": "74" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/lite/featureability.d.ts", - "codeContextStaerLine": "82", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "bundleName: string;", - "mainBuggyLine": "82" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/lite/featureability.d.ts", - "codeContextStaerLine": "90", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "abilityName: string;", - "mainBuggyLine": "90" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/lite/featureability.d.ts", - "codeContextStaerLine": "100", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "message?: string;", - "mainBuggyLine": "100" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/lite/featureability.d.ts", - "codeContextStaerLine": "108", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: () => void;", - "mainBuggyLine": "108" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/lite/featureability.d.ts", - "codeContextStaerLine": "116", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "116" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/lite/featureability.d.ts", - "codeContextStaerLine": "124", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "complete?: () => void;", - "mainBuggyLine": "124" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/lite/featureability.d.ts", - "codeContextStaerLine": "140", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "success?: (data: SubscribeMessageResponse) => void;", - "mainBuggyLine": "140" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/lite/featureability.d.ts", - "codeContextStaerLine": "148", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fail?: (data: string, code: number) => void;", - "mainBuggyLine": "148" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/lite/viewmodel.d.ts", - "codeContextStaerLine": "229", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type DefaultData = object;", - "mainBuggyLine": "229" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/common/lite/viewmodel.d.ts", - "codeContextStaerLine": "238", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "type CombinedOptions = object &\n Options &\n ThisType;", - "mainBuggyLine": "238" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventPublishData.d.ts", - "codeContextStaerLine": "133", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isOrdered?: boolean;", - "mainBuggyLine": "133" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventPublishData.d.ts", - "codeContextStaerLine": "143", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isSticky?: boolean;", - "mainBuggyLine": "143" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventSubscriber.d.ts", - "codeContextStaerLine": "332", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isOrderedCommonEvent(callback: AsyncCallback): void;", - "mainBuggyLine": "332" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventSubscriber.d.ts", - "codeContextStaerLine": "341", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isOrderedCommonEvent(): Promise;", - "mainBuggyLine": "341" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventSubscriber.d.ts", - "codeContextStaerLine": "350", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isOrderedCommonEventSync(): boolean;", - "mainBuggyLine": "350" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventSubscriber.d.ts", - "codeContextStaerLine": "359", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isStickyCommonEvent(callback: AsyncCallback): void;", - "mainBuggyLine": "359" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventSubscriber.d.ts", - "codeContextStaerLine": "368", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isStickyCommonEvent(): Promise;", - "mainBuggyLine": "368" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventSubscriber.d.ts", - "codeContextStaerLine": "377", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isStickyCommonEventSync(): boolean;", - "mainBuggyLine": "377" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventSubscriber.d.ts", - "codeContextStaerLine": "386", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "abortCommonEvent(callback: AsyncCallback): void;", - "mainBuggyLine": "386" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventSubscriber.d.ts", - "codeContextStaerLine": "395", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "abortCommonEvent(): Promise;", - "mainBuggyLine": "395" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventSubscriber.d.ts", - "codeContextStaerLine": "403", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "abortCommonEventSync(): void;", - "mainBuggyLine": "403" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventSubscriber.d.ts", - "codeContextStaerLine": "412", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "clearAbortCommonEvent(callback: AsyncCallback): void;", - "mainBuggyLine": "412" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventSubscriber.d.ts", - "codeContextStaerLine": "421", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "clearAbortCommonEvent(): Promise;", - "mainBuggyLine": "421" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventSubscriber.d.ts", - "codeContextStaerLine": "429", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "clearAbortCommonEventSync(): void;", - "mainBuggyLine": "429" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventSubscriber.d.ts", - "codeContextStaerLine": "438", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAbortCommonEvent(callback: AsyncCallback): void;", - "mainBuggyLine": "438" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventSubscriber.d.ts", - "codeContextStaerLine": "447", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAbortCommonEvent(): Promise;", - "mainBuggyLine": "447" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventSubscriber.d.ts", - "codeContextStaerLine": "456", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getAbortCommonEventSync(): boolean;", - "mainBuggyLine": "456" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventSubscriber.d.ts", - "codeContextStaerLine": "518", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "finishCommonEvent(callback: AsyncCallback): void;", - "mainBuggyLine": "518" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventSubscriber.d.ts", - "codeContextStaerLine": "527", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "finishCommonEvent(): Promise;", - "mainBuggyLine": "527" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/data/rdb/resultSet.d.ts", - "codeContextStaerLine": "43", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "columnNames: Array;", - "mainBuggyLine": "43" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/data/rdb/resultSet.d.ts", - "codeContextStaerLine": "55", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "columnCount: number;", - "mainBuggyLine": "55" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/data/rdb/resultSet.d.ts", - "codeContextStaerLine": "65", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rowCount: number;", - "mainBuggyLine": "65" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/data/rdb/resultSet.d.ts", - "codeContextStaerLine": "76", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rowIndex: number;", - "mainBuggyLine": "76" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/data/rdb/resultSet.d.ts", - "codeContextStaerLine": "86", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isAtFirstRow: boolean;", - "mainBuggyLine": "86" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/data/rdb/resultSet.d.ts", - "codeContextStaerLine": "96", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isAtLastRow: boolean;", - "mainBuggyLine": "96" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/data/rdb/resultSet.d.ts", - "codeContextStaerLine": "106", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isEnded: boolean;", - "mainBuggyLine": "106" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/data/rdb/resultSet.d.ts", - "codeContextStaerLine": "117", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isStarted: boolean;", - "mainBuggyLine": "117" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/data/rdb/resultSet.d.ts", - "codeContextStaerLine": "128", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "isClosed: boolean;", - "mainBuggyLine": "128" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/global/rawFileDescriptor.d.ts", - "codeContextStaerLine": "67", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "fd: number;", - "mainBuggyLine": "67" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/global/rawFileDescriptor.d.ts", - "codeContextStaerLine": "90", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "offset: number;", - "mainBuggyLine": "90" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/global/rawFileDescriptor.d.ts", - "codeContextStaerLine": "113", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "length: number;", - "mainBuggyLine": "113" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/global/sendableResource.d.ets", - "codeContextStaerLine": "33", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " interface SendableResource", - "mainBuggyLine": "33" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/graphics3d/SceneNodes.d.ts", - "codeContextStaerLine": "166", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface Node", - "mainBuggyLine": "166" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/graphics3d/SceneNodes.d.ts", - "codeContextStaerLine": "271", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface Geometry", - "mainBuggyLine": "271" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/graphics3d/SceneNodes.d.ts", - "codeContextStaerLine": "315", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface Light", - "mainBuggyLine": "315" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/graphics3d/SceneNodes.d.ts", - "codeContextStaerLine": "370", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface SpotLight", - "mainBuggyLine": "370" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/graphics3d/SceneNodes.d.ts", - "codeContextStaerLine": "380", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface DirectionalLight", - "mainBuggyLine": "380" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/graphics3d/SceneNodes.d.ts", - "codeContextStaerLine": "390", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface Camera", - "mainBuggyLine": "390" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/graphics3d/SceneResources.d.ts", - "codeContextStaerLine": "152", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface Shader", - "mainBuggyLine": "152" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/graphics3d/SceneResources.d.ts", - "codeContextStaerLine": "188", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface Material", - "mainBuggyLine": "188" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/graphics3d/SceneResources.d.ts", - "codeContextStaerLine": "207", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface ShaderMaterial", - "mainBuggyLine": "207" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/graphics3d/SceneResources.d.ts", - "codeContextStaerLine": "262", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface Mesh", - "mainBuggyLine": "262" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/graphics3d/SceneResources.d.ts", - "codeContextStaerLine": "300", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface Animation", - "mainBuggyLine": "300" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/graphics3d/SceneResources.d.ts", - "codeContextStaerLine": "455", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface Environment", - "mainBuggyLine": "455" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/graphics3d/SceneResources.d.ts", - "codeContextStaerLine": "527", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface Image", - "mainBuggyLine": "527" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/multimedia/ringtonePlayer.d.ts", - "codeContextStaerLine": "34", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "volume: number;", - "mainBuggyLine": "34" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/multimedia/ringtonePlayer.d.ts", - "codeContextStaerLine": "41", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "loop: boolean;", - "mainBuggyLine": "41" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/multimedia/ringtonePlayer.d.ts", - "codeContextStaerLine": "58", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "readonly state: media.AVPlayerState;", - "mainBuggyLine": "58" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/multimedia/soundPool.d.ts", - "codeContextStaerLine": "37", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "loop?: number;", - "mainBuggyLine": "37" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/multimedia/soundPool.d.ts", - "codeContextStaerLine": "44", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rate?: number;", - "mainBuggyLine": "44" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/multimedia/soundPool.d.ts", - "codeContextStaerLine": "51", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "leftVolume?: number;", - "mainBuggyLine": "51" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/multimedia/soundPool.d.ts", - "codeContextStaerLine": "58", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "rightVolume?: number;", - "mainBuggyLine": "58" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/multimedia/soundPool.d.ts", - "codeContextStaerLine": "65", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "priority?: number;", - "mainBuggyLine": "65" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/multimedia/soundPool.d.ts", - "codeContextStaerLine": "73", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "parallelPlayFlag?: boolean;", - "mainBuggyLine": "73" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/notification/notificationContent.d.ts", - "codeContextStaerLine": "109", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface NotificationLongTextContent", - "mainBuggyLine": "109" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/notification/notificationContent.d.ts", - "codeContextStaerLine": "213", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface NotificationLiveViewContent", - "mainBuggyLine": "213" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/notification/notificationContent.d.ts", - "codeContextStaerLine": "282", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface NotificationMultiLineContent", - "mainBuggyLine": "282" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/notification/notificationContent.d.ts", - "codeContextStaerLine": "342", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface NotificationPictureContent", - "mainBuggyLine": "342" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/notification/notificationContent.d.ts", - "codeContextStaerLine": "378", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface NotificationSystemLiveViewContent", - "mainBuggyLine": "378" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/notification/notificationRequest.d.ts", - "codeContextStaerLine": "549", - "defectLevel": 2, - "defectType": "API_DEFINE_NAME_01", - "description": "API check error of [naming errors]: Prohibited word in [representativebundle?: bundleoption;]:{option}.The word allowed is [options].", - "language": "ts", - "mainBuggyCode": "representativeBundle?: BundleOption;", - "mainBuggyLine": "549" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/notification/notificationRequest.d.ts", - "codeContextStaerLine": "559", - "defectLevel": 2, - "defectType": "API_DEFINE_NAME_01", - "description": "API check error of [naming errors]: Prohibited word in [readonly agentbundle?: bundleoption;]:{option}.The word allowed is [options].", - "language": "ts", - "mainBuggyCode": "readonly agentBundle?: BundleOption;", - "mainBuggyLine": "559" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/notification/notificationRequest.d.ts", - "codeContextStaerLine": "756", - "defectLevel": 2, - "defectType": "API_DEFINE_UNALLOWABLE_01", - "description": "API check error of [forbidden word]: Illegal [any] keyword used in the API.", - "language": "ts", - "mainBuggyCode": "extraInfo?: { [key: string]: any };", - "mainBuggyLine": "756" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/notification/notificationSubscriber.d.ts", - "codeContextStaerLine": "43", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onConsume?: (data: SubscribeCallbackData) => void;", - "mainBuggyLine": "43" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/notification/notificationSubscriber.d.ts", - "codeContextStaerLine": "52", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onCancel?: (data: SubscribeCallbackData) => void;", - "mainBuggyLine": "52" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/notification/notificationSubscriber.d.ts", - "codeContextStaerLine": "61", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onUpdate?: (data: NotificationSortingMap) => void;", - "mainBuggyLine": "61" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/notification/notificationSubscriber.d.ts", - "codeContextStaerLine": "70", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onConnect?: () => void;", - "mainBuggyLine": "70" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/notification/notificationSubscriber.d.ts", - "codeContextStaerLine": "79", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onDisconnect?: () => void;", - "mainBuggyLine": "79" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/notification/notificationSubscriber.d.ts", - "codeContextStaerLine": "88", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onDestroy?: () => void;", - "mainBuggyLine": "88" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/notification/notificationSubscriber.d.ts", - "codeContextStaerLine": "99", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onDoNotDisturbDateChange?: (mode: notification.DoNotDisturbDate) => void;", - "mainBuggyLine": "99" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/notification/notificationSubscriber.d.ts", - "codeContextStaerLine": "118", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onEnabledNotificationChanged?: (callbackData: EnabledNotificationCallbackData) => void;", - "mainBuggyLine": "118" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/notification/notificationSubscriber.d.ts", - "codeContextStaerLine": "127", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onBadgeChanged?: (data: BadgeNumberCallbackData) => void;", - "mainBuggyLine": "127" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/notification/notificationSubscriber.d.ts", - "codeContextStaerLine": "136", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "onBadgeEnabledChanged?: BadgeEnabledChangedCallback;", - "mainBuggyLine": "136" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/permissions.d.ts", - "codeContextStaerLine": "29", - "defectLevel": 2, - "defectType": "API_DOC_TYPEDEF_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [typedef] tag is missing.", - "language": "ts", - "mainBuggyCode": "export type Permissions = string;", - "mainBuggyLine": "29" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/security/PermissionRequestResult.d.ts", - "codeContextStaerLine": "70", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "permissions: Array;", - "mainBuggyLine": "70" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/security/PermissionRequestResult.d.ts", - "codeContextStaerLine": "99", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "authResults: Array;", - "mainBuggyLine": "99" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/security/PermissionRequestResult.d.ts", - "codeContextStaerLine": "110", - "defectLevel": 2, - "defectType": "API_DOC_TYPE_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [type] tag is missing.", - "language": "ts", - "mainBuggyCode": "dialogShownResults?: Array;", - "mainBuggyLine": "110" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/tag/nfctech.d.ts", - "codeContextStaerLine": "44", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface NfcATag", - "mainBuggyLine": "44" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/tag/nfctech.d.ts", - "codeContextStaerLine": "99", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface NfcBTag", - "mainBuggyLine": "99" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/tag/nfctech.d.ts", - "codeContextStaerLine": "154", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface NfcFTag", - "mainBuggyLine": "154" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/tag/nfctech.d.ts", - "codeContextStaerLine": "209", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface NfcVTag", - "mainBuggyLine": "209" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/tag/nfctech.d.ts", - "codeContextStaerLine": "260", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface IsoDepTag", - "mainBuggyLine": "260" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/tag/nfctech.d.ts", - "codeContextStaerLine": "413", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface NdefTag", - "mainBuggyLine": "413" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/tag/nfctech.d.ts", - "codeContextStaerLine": "727", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface MifareClassicTag", - "mainBuggyLine": "727" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/tag/nfctech.d.ts", - "codeContextStaerLine": "1389", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface MifareUltralightTag", - "mainBuggyLine": "1389" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/tag/nfctech.d.ts", - "codeContextStaerLine": "1563", - "defectLevel": 2, - "defectType": "API_DOC_EXTENDS_04", - "description": "API check error of [wrong scene]: JSDoc tag validity verification failed. Please confirm if the [extends] tag is missing.", - "language": "ts", - "mainBuggyCode": " export interface NdefFormatableTag", - "mainBuggyLine": "1563" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/tag/tagSession.d.ts", - "codeContextStaerLine": "54", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getTagInfo(): tag.TagInfo;", - "mainBuggyLine": "54" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/tag/tagSession.d.ts", - "codeContextStaerLine": "67", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "connectTag(): boolean;", - "mainBuggyLine": "67" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/tag/tagSession.d.ts", - "codeContextStaerLine": "101", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "reset(): void;", - "mainBuggyLine": "101" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/tag/tagSession.d.ts", - "codeContextStaerLine": "136", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "isTagConnected(): boolean;", - "mainBuggyLine": "136" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/tag/tagSession.d.ts", - "codeContextStaerLine": "169", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "setSendDataTimeout(timeout: number): boolean;", - "mainBuggyLine": "169" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/tag/tagSession.d.ts", - "codeContextStaerLine": "214", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getSendDataTimeout(): number;", - "mainBuggyLine": "214" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/tag/tagSession.d.ts", - "codeContextStaerLine": "253", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sendData(data: number[]): Promise;", - "mainBuggyLine": "253" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/tag/tagSession.d.ts", - "codeContextStaerLine": "267", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "sendData(data: number[], callback: AsyncCallback): void;", - "mainBuggyLine": "267" - }, - { - "analyzerName": "apiengine", - "buggyFilePath": "/Users/huawei/interface_sdk-js-micrili/api/tag/tagSession.d.ts", - "codeContextStaerLine": "353", - "defectLevel": 2, - "defectType": "API_DOC_ATOMICSERVICE_03", - "description": "API check error of [wrong scene]: It was detected that there is an inheritable label [atomicservice] in the current file, but there are child nodes without this label.", - "language": "ts", - "mainBuggyCode": "getMaxSendLength(): number;", - "mainBuggyLine": "353" - } -] \ No newline at end of file diff --git a/build-tools/mdFiles.txt b/build-tools/mdFiles.txt deleted file mode 100644 index 584ea4c49f..0000000000 --- a/build-tools/mdFiles.txt +++ /dev/null @@ -1,816 +0,0 @@ -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/ability_component.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/action_sheet.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/alert_dialog.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/alphabet_indexer.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/animator.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/badge.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/blank.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/button.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/calendar_picker.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/canvas.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkbox.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/checkboxgroup.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/circle.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/column.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/column_split.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/common_ts_ets_api.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/component3d.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/container_span.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/content_slot.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/context_menu.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/counter.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/custom_dialog_controller.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/data_panel.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/date_picker.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/divider.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/effect_component.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/ellipse.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/embedded_component.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/enums.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/flex.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/flow_item.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/focus.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/folder_stack.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/form_component.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/form_link.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/for_each.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gauge.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gesture.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/gridItem.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_col.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_container.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/grid_row.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/hyperlink.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_animator.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_common.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/image_span.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/index-full.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/inspector.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/lazy_for_each.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/line.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list_item.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/list_item_group.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/loading_progress.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/location_button.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/marquee.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/matrix2d.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/media_cached_image.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/menu.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/menu_item.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/menu_item_group.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/navigation.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/navigator.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/nav_destination.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/nav_router.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/node_container.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/page_transition.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/panel.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/particle.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/paste_button.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/path.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/pattern_lock.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/plugin_component.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/polygon.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/polyline.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/progress.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/qrcode.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/radio.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rating.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rect.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/refresh.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/relative_container.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/remote_window.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/repeat.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_editor.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/rich_text.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/root_scene.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/row.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/row_split.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/save_button.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/screen.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/scroll_bar.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/search.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/security_component.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/select.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/shape.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/sidebar.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/slider.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/span.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/stack.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/state_management.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/stepper.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/stepper_item.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/styled_string.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/swiper.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/symbolglyph.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/symbol_span.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/tabs.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/tab_content.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_area.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_clock.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_common.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_input.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_picker.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/text_timer.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/time_picker.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/toggle.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/ui_extension_component.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/units.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/video.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/water_flow.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/web.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/window_scene.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/with_theme.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/component/ets/xcomponent.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/global.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/index.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@internal/ets/lifecycle.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.ability.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.dataUriUtils.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.errorCode.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.featureAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.particleAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.screenLockFileManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.ability.wantConstant.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.abilityAccessCtrl.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.config.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.GesturePath.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.accessibility.GesturePoint.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.account.appAccount.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.account.distributedAccount.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.account.osAccount.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.advertising.AdComponent.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.advertising.AdsServiceExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.advertising.AutoAdComponent.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.advertising.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.ai.intelligentVoice.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.ai.mindSporeLite.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.animation.windowAnimationManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.animator.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.Ability.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.AbilityConstant.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.abilityDelegatorRegistry.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.AbilityLifecycleCallback.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.abilityManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.AbilityStage.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.ActionExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.ApplicationStateChangeCallback.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.appRecovery.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.AtomicServiceOptions.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.AutoFillExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.autoFillManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.autoStartupManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.ChildProcess.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.childProcessManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.common.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.Configuration.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.ConfigurationConstant.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.contextConstant.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.dataUriUtils.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.dialogRequest.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.dialogSession.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.DriverExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.EmbeddableUIAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.EmbeddedUIExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.EnvironmentCallback.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.errorManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.ExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.insightIntent.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.InsightIntentContext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.insightIntentDriver.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.InsightIntentExecutor.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.MediaControlExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.missionManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.OpenLinkOptions.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.PrintExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.quickFixManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.ServiceExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.ShareExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.StartOptions.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.UIAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.UIExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.UIExtensionContentSession.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.UserAuthExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.VpnExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.Want.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.wantAgent.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.ability.wantConstant.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.appstartup.StartupConfig.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.appstartup.StartupConfigEntry.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.appstartup.StartupListener.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.appstartup.startupManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.appstartup.StartupTask.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.businessAbilityRouter.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formAgent.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formBindingData.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.FormExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formHost.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formObserver.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.app.form.formProvider.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.abilityDelegatorRegistry.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.abilityManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.AccessibilityExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.appManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.BackupExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.Configuration.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.ConfigurationConstant.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.DataShareExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.formBindingData.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.formError.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.formHost.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.formInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.formProvider.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.missionManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.StaticSubscriberExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.StaticSubscriberExtensionContext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.testRunner.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.uriPermissionManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.Want.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.application.WindowExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Chip.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ChipGroup.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ComposeListItem.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ComposeTitleBar.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Counter.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Dialog.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.EditableTitleBar.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ExceptionPrompt.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Filter.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.FormMenu.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.GridObjectSortComponent.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.Popup.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ProgressButton.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SegmentButton.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SelectionMenu.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SelectTitleBar.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SplitLayout.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SubHeader.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.SwipeRefresher.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TabTitleBar.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.ToolBar.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.advanced.TreeView.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.componentSnapshot.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.componentUtils.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.dragController.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.drawableDescriptor.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.inspector.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.modifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.node.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.observer.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.performanceMonitor.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.shape.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.theme.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.UIContext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.arkui.uiExtension.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.backgroundTaskManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.base.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.batteryStatistics.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.a2dp.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.access.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.baseProfile.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.ble.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.connection.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.constant.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.hfp.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.hid.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.map.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.pan.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.pbap.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.socket.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetooth.wearDetection.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bluetoothManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.brightness.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.buffer.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.appControl.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleMonitor.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.bundleResourceManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.defaultAppManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.distributedBundleManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.freeInstall.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.innerBundleManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.installer.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.launcherBundleManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundle.overlay.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bundleState.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.bytrace.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.calendarManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.charger.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEvent.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.commonEventManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.configPolicy.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.connectedTag.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.contact.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.continuation.continuationManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.convertxml.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.cooperate.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.curves.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.cloudData.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.cloudExtension.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.commonType.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataShare.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.dataSharePredicates.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.DataShareResultSet.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedData.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedDataObject.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.distributedKVStore.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.preferences.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.rdb.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.relationalStore.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.storage.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.unifiedDataChannel.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformDataStruct.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.uniformTypeDescriptor.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.data.ValuesBucket.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceAttest.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.deviceStatus.dragInteraction.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.display.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedBundle.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedDeviceManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.deviceManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedHardware.hardwareManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.distributedMissionManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.dlpPermission.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.document.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.driver.deviceManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.effectKit.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.accountManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.adminManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.applicationManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.bluetoothManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.browser.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.bundleManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.dateTimeManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.deviceControl.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.deviceInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.deviceSettings.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.EnterpriseAdminExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.locationManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.networkManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.restrictions.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.securityManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.systemManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.usbManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.enterprise.wifiManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.events.emitter.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.faultLogger.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.backup.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.BackupExtensionContext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.cloudSync.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.cloudSyncManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.environment.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fileAccess.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fileExtensionInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fileuri.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.fs.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.hash.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.photoAccessHelper.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.PhotoPickerComponent.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.picker.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.recent.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.securityLabel.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.statvfs.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.storageStatistics.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.trash.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.file.volumeManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.fileio.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.filemanagement.userFileManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.fileshare.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.font.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.geolocation.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.geoLocationManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.graphics.colorSpaceManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.graphics.common2D.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.graphics.displaySync.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.graphics.drawing.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.graphics.hdrCapability.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.graphics.scene.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.graphics.text.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiAppEvent.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.hichecker.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.hidebug.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.hilog.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiSysEvent.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiTraceChain.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiTraceMeter.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.hiviewdfx.hiAppEvent.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.i18n.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.identifier.oaid.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.inputMethod.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.inputMethod.Panel.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.inputMethodEngine.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.InputMethodExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.InputMethodExtensionContext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.inputMethodList.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.InputMethodSubtype.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.intl.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.logLibrary.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.matrix4.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.measure.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.mediaquery.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audio.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.audioHaptic.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avCastPicker.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avCastPickerParam.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avsession.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.avVolumePanel.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.camera.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.cameraPicker.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.drm.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.image.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.media.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.mediaLibrary.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.movingphotoview.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimedia.systemSoundManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.gestureEvent.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.infraredEmitter.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputConsumer.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDevice.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputDeviceCooperate.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputEvent.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputEventClient.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.inputMonitor.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.intentionCode.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.keyCode.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.keyEvent.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.mouseEvent.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.pointer.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.shortKey.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.multimodalInput.touchEvent.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.connection.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.ethernet.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.http.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.mdns.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.networkSecurity.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.policy.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.sharing.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.socket.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.statistics.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.vpn.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.vpnExtension.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.net.webSocket.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.cardEmulation.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.controller.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.nfc.tag.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.notification.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.notificationSubscribe.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.pasteboard.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.PiPWindow.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.pluginComponent.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.power.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.print.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.privacyManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.process.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.prompt.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.promptAction.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgent.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.reminderAgentManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.request.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.backgroundTaskManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.deviceStandby.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.systemload.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.usageStatistics.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.resourceschedule.workScheduler.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.router.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.rpc.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.runningLock.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.screen.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.screenLock.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.screenshot.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.secureElement.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.asset.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cert.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.certManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.cryptoFramework.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.security.huks.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.sendableResourceManager.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.sensor.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.settings.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.statfs.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.stationary.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.systemCapability.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.systemDateTime.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.systemparameter.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.systemParameterEnhance.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.systemTime.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.systemTimer.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.taskpool.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.call.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.data.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.observer.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.radio.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.sim.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.sms.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.telephony.vcard.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.thermal.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.uiAppearance.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.uiExtensionHost.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.UiTest.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.update.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.uri.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.url.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.usb.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.usbManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.userIAM.faceAuth.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.userIAM.userAuth.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.userIAM.userAuthIcon.d.ets -/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.ArrayList.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.Deque.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.HashMap.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.HashSet.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.json.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.LightWeightMap.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.LightWeightSet.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.LinkedList.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.List.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.PlainArray.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.Queue.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.Stack.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.stream.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.TreeMap.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.TreeSet.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.util.Vector.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.vibrator.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.wallpaper.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.WallpaperExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.wantAgent.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.netErrorList.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.web.webview.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifi.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManager.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.wifiManagerExt.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.window.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.worker.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.WorkSchedulerExtensionAbility.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.xml.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@ohos.zlib.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@system.app.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@system.battery.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@system.bluetooth.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@system.brightness.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@system.cipher.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@system.configuration.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@system.device.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@system.fetch.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@system.file.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@system.geolocation.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@system.mediaquery.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@system.network.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@system.notification.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@system.package.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@system.prompt.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@system.request.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@system.router.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@system.sensor.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@system.storage.d.ts -/Users/huawei/interface_sdk-js-micrili/api/@system.vibrator.d.ts -/Users/huawei/interface_sdk-js-micrili/api/ability/abilityResult.d.ts -/Users/huawei/interface_sdk-js-micrili/api/ability/connectOptions.d.ts -/Users/huawei/interface_sdk-js-micrili/api/ability/dataAbilityHelper.d.ts -/Users/huawei/interface_sdk-js-micrili/api/ability/dataAbilityOperation.d.ts -/Users/huawei/interface_sdk-js-micrili/api/ability/dataAbilityResult.d.ts -/Users/huawei/interface_sdk-js-micrili/api/ability/startAbilityParameter.d.ts -/Users/huawei/interface_sdk-js-micrili/api/ability/want.d.ts -/Users/huawei/interface_sdk-js-micrili/api/advertising/advertisement.d.ts -/Users/huawei/interface_sdk-js-micrili/api/app/appVersionInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/app/context.d.ts -/Users/huawei/interface_sdk-js-micrili/api/app/processInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/AbilityDelegator.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/abilityDelegatorArgs.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/AbilityFirstFrameStateData.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/AbilityFirstFrameStateObserver.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/AbilityForegroundStateObserver.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/AbilityMonitor.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/AbilityRunningInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/AbilityStageContext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/AbilityStageMonitor.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/AbilityStartCallback.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/AbilityStateData.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/AccessibilityExtensionContext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/AppForegroundStateObserver.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/ApplicationContext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/ApplicationStateObserver.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/AppStateData.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/AutoFillExtensionContext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/AutoFillPopupConfig.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/AutoFillRect.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/AutoFillRequest.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/AutoFillType.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/AutoStartupCallback.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/AutoStartupInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/BaseContext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/BusinessAbilityInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/Context.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/ContinuableInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/ContinueCallback.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/ContinueDeviceInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/ContinueMissionInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/DriverExtensionContext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/EmbeddableUIAbilityContext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/ErrorObserver.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/EventHub.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/ExtensionContext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/ExtensionRunningInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/FormExtensionContext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/LoopObserver.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/MediaControlExtensionContext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/MissionCallbacks.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/MissionDeviceInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/MissionInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/MissionListener.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/MissionParameter.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/MissionSnapshot.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/PageNodeInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/ProcessData.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/ProcessInformation.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/ProcessRunningInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/ServiceExtensionContext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/shellCmdResult.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/UIAbilityContext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/UIExtensionContext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/ViewData.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/VpnExtensionContext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/WindowExtensionContext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/application/WorkSchedulerExtensionContext.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/AlphabetIndexerModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/AttributeUpdater.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/BlankModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/BuilderNode.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/ButtonModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/CalendarPickerModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/CheckboxGroupModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/CheckboxModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/ColumnModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/ColumnSplitModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/CommonModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/ComponentContent.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/Content.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/CounterModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/DataPanelModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/DatePickerModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/DividerModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/FormComponentModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/FrameNode.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/GaugeModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/Graphics.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/GridColModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/GridItemModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/GridModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/GridRowModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/HyperlinkModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/ImageAnimatorModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/ImageModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/ImageSpanModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/LineModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/ListItemGroupModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/ListItemModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/ListModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/LoadingProgressModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/MarqueeModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/MenuItemModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/MenuModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/NavDestinationModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/NavigationModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/NavigatorModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/NavRouterModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/NodeContent.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/NodeController.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/PanelModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/PathModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/PatternLockModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/PolygonModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/PolylineModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/ProgressModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/QRCodeModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/RadioModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/RatingModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/RectModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/RefreshModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/RenderNode.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/RichEditorModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/RowModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/RowSplitModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/ScrollModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/SearchModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/SelectModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/ShapeModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/SideBarContainerModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/SliderModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/SpanModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/StackModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/StepperItemModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/SwiperModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/SymbolGlyphModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/TabsModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/TextAreaModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/TextClockModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/TextInputModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/TextModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/TextPickerModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/TextTimerModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/TimePickerModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/ToggleModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/VideoModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/WaterFlowModifier.d.ts -/Users/huawei/interface_sdk-js-micrili/api/arkui/XComponentNode.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundle/abilityInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundle/applicationInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleInstaller.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundle/bundleStatusCallback.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundle/customizeData.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundle/elementName.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundle/hapModuleInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundle/launcherAbilityInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundle/moduleInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundle/PermissionDef.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundle/remoteAbilityInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundle/shortcutInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundleManager/AbilityInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundleManager/ApplicationInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundleManager/AppProvisionInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundleManager/BundleInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundleManager/BundlePackInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundleManager/BundleResourceInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundleManager/DispatchInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundleManager/ElementName.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundleManager/ExtensionAbilityInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundleManager/HapModuleInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundleManager/LauncherAbilityInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundleManager/LauncherAbilityResourceInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundleManager/Metadata.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundleManager/OverlayModuleInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundleManager/PermissionDef.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundleManager/RecoverableApplicationInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundleManager/RemoteAbilityInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundleManager/SharedBundleInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundleManager/ShortcutInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/bundleManager/Skill.d.ts -/Users/huawei/interface_sdk-js-micrili/api/common/full/canvaspattern.d.ts -/Users/huawei/interface_sdk-js-micrili/api/common/full/console.d.ts -/Users/huawei/interface_sdk-js-micrili/api/common/full/dom.d.ts -/Users/huawei/interface_sdk-js-micrili/api/common/full/featureability.d.ts -/Users/huawei/interface_sdk-js-micrili/api/common/full/global.d.ts -/Users/huawei/interface_sdk-js-micrili/api/common/full/index.d.ts -/Users/huawei/interface_sdk-js-micrili/api/common/full/viewmodel.d.ts -/Users/huawei/interface_sdk-js-micrili/api/common/lite/console.d.ts -/Users/huawei/interface_sdk-js-micrili/api/common/lite/featureability.d.ts -/Users/huawei/interface_sdk-js-micrili/api/common/lite/global.d.ts -/Users/huawei/interface_sdk-js-micrili/api/common/lite/index.d.ts -/Users/huawei/interface_sdk-js-micrili/api/common/lite/viewmodel.d.ts -/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventData.d.ts -/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventPublishData.d.ts -/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventSubscribeInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/commonEvent/commonEventSubscriber.d.ts -/Users/huawei/interface_sdk-js-micrili/api/continuation/continuationExtraParams.d.ts -/Users/huawei/interface_sdk-js-micrili/api/continuation/continuationResult.d.ts -/Users/huawei/interface_sdk-js-micrili/api/data/rdb/resultSet.d.ts -/Users/huawei/interface_sdk-js-micrili/api/global/rawFileDescriptor.d.ts -/Users/huawei/interface_sdk-js-micrili/api/global/resource.d.ts -/Users/huawei/interface_sdk-js-micrili/api/global/sendableResource.d.ets -/Users/huawei/interface_sdk-js-micrili/api/graphics3d/Scene.d.ts -/Users/huawei/interface_sdk-js-micrili/api/graphics3d/SceneNodes.d.ts -/Users/huawei/interface_sdk-js-micrili/api/graphics3d/ScenePostProcessSettings.d.ts -/Users/huawei/interface_sdk-js-micrili/api/graphics3d/SceneResources.d.ts -/Users/huawei/interface_sdk-js-micrili/api/graphics3d/SceneTypes.d.ts -/Users/huawei/interface_sdk-js-micrili/api/multimedia/ringtonePlayer.d.ts -/Users/huawei/interface_sdk-js-micrili/api/multimedia/soundPool.d.ts -/Users/huawei/interface_sdk-js-micrili/api/multimedia/systemTonePlayer.d.ts -/Users/huawei/interface_sdk-js-micrili/api/notification/notificationActionButton.d.ts -/Users/huawei/interface_sdk-js-micrili/api/notification/NotificationCommonDef.d.ts -/Users/huawei/interface_sdk-js-micrili/api/notification/notificationContent.d.ts -/Users/huawei/interface_sdk-js-micrili/api/notification/notificationFlags.d.ts -/Users/huawei/interface_sdk-js-micrili/api/notification/notificationRequest.d.ts -/Users/huawei/interface_sdk-js-micrili/api/notification/notificationSlot.d.ts -/Users/huawei/interface_sdk-js-micrili/api/notification/notificationSorting.d.ts -/Users/huawei/interface_sdk-js-micrili/api/notification/notificationSortingMap.d.ts -/Users/huawei/interface_sdk-js-micrili/api/notification/notificationSubscribeInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/notification/notificationSubscriber.d.ts -/Users/huawei/interface_sdk-js-micrili/api/notification/notificationTemplate.d.ts -/Users/huawei/interface_sdk-js-micrili/api/notification/notificationUserInput.d.ts -/Users/huawei/interface_sdk-js-micrili/api/permissions.d.ts -/Users/huawei/interface_sdk-js-micrili/api/security/PermissionRequestResult.d.ts -/Users/huawei/interface_sdk-js-micrili/api/tag/nfctech.d.ts -/Users/huawei/interface_sdk-js-micrili/api/tag/tagSession.d.ts -/Users/huawei/interface_sdk-js-micrili/api/wantAgent/triggerInfo.d.ts -/Users/huawei/interface_sdk-js-micrili/api/wantAgent/wantAgentInfo.d.ts \ No newline at end of file From 9ab813a18d589d0f67caa2a0a8a054e1d5e071e8 Mon Sep 17 00:00:00 2001 From: huawei <3365582168@qq.com> Date: Mon, 17 Jun 2024 14:31:50 +0800 Subject: [PATCH 04/18] =?UTF-8?q?=E5=86=B2=E7=AA=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/workspace.xml | 112 -------------------------------------------- 1 file changed, 112 deletions(-) delete mode 100644 .idea/workspace.xml diff --git a/.idea/workspace.xml b/.idea/workspace.xml deleted file mode 100644 index 7590271ff7..0000000000 --- a/.idea/workspace.xml +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - - - - - { - "associatedIndex": 0 -} - - - - - - - { - "keyToString": { - "RunOnceActivity.OpenProjectViewOnStart": "true", - "RunOnceActivity.ShowReadmeOnStart": "true", - "git-widget-placeholder": "master", - "ignore_missing_gitignore": "true", - "node.js.detected.package.eslint": "true", - "node.js.selected.package.eslint": "(autodetect)", - "node.js.selected.package.tslint": "(autodetect)", - "nodejs_package_manager_path": "npm", - "ts.external.directory.path": "/Users/huawei/interface_sdk-js-micrili/build-tools/dts_parser/node_modules/typescript/lib", - "vue.rearranger.settings.migration": "true" - } -} - - - - - 1718589109366 - - - - - - - - - - - - - - - \ No newline at end of file From 73a5f6d979cc9e40c973899366c1860adea497e4 Mon Sep 17 00:00:00 2001 From: huawei <3365582168@qq.com> Date: Mon, 17 Jun 2024 14:48:26 +0800 Subject: [PATCH 05/18] =?UTF-8?q?=E5=86=B2=E7=AA=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build-tools/dts_parser/Js_Api.xlsx | Bin 846627 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 build-tools/dts_parser/Js_Api.xlsx diff --git a/build-tools/dts_parser/Js_Api.xlsx b/build-tools/dts_parser/Js_Api.xlsx deleted file mode 100644 index 7220e5c29f0ac76b826d99c559da0bdb7340538b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 846627 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 z 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ϑ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%0D0{)vzr{Q2F)8V|^eZd1-!*e4Xf3Pt;1 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 z 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

` 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%0D4P*|gSA1T1-v?Vy43KyLimAw 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%0DbO(1ow4V>ZQ{Tz%%S<*fu!BP2%}@AULkv#; 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 T^);l=$Yb!cMM@sRebWCQ_ao-L From 88b361e3c009c23885c96244eec7c939ce6a93f1 Mon Sep 17 00:00:00 2001 From: huawei <3365582168@qq.com> Date: Mon, 17 Jun 2024 14:51:40 +0800 Subject: [PATCH 06/18] =?UTF-8?q?=E5=86=B2=E7=AA=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build-tools/mdFiles.txt | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 build-tools/mdFiles.txt diff --git a/build-tools/mdFiles.txt b/build-tools/mdFiles.txt new file mode 100644 index 0000000000..f9f0cb2145 --- /dev/null +++ b/build-tools/mdFiles.txt @@ -0,0 +1,2 @@ +# api absolute path +Z:\root\interface\sdk-js\api\xxx.d.ts \ No newline at end of file From cdccabd1dfc9ca46d99826647e433ab4b039e642 Mon Sep 17 00:00:00 2001 From: lixudong <7518382+lixudong1997@user.noreply.gitee.com> Date: Mon, 17 Jun 2024 07:26:47 +0000 Subject: [PATCH 07/18] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20.D?= =?UTF-8?q?S=5FStore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .DS_Store | Bin 6148 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 .DS_Store diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 002a81c03fdd4b4068a6182e698282178e42812a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeHK-AcnS6i(c98AIrWg5CwZ9oUT_4sS}GFJMJ4RAx(u7Hc!s&RvW_@AZXz5ue9% zk`x^FTEv|L$#;H}=7Z*kF~stt+L{sM5peI+-lS z&fdAoiZID0GhL9x6G*wcNwQcid^OMFT-OFBAljlmb`F=z-f-Y{W&hM&b>(u{2Yqld zSgqP(|LFMaa{QdWWa`cE$$@SyyA~^W2gNSuHJD|o${xW}Wmj2*!~iis3=jhw&44`? zL}#N}pv4md#6TSbxIai}h@QpLpx!#5!|OA~n}{f&<68nzTJ$WI1|b5%O(~!$<@Sle zO*#0b&GRgl22DBRdS)2M&RjiSxSk#SQl~TS8Kj;VAO_YMXc*JM^Zx>Vnc7GGdI?#? z05R~-7~suOF!Eth_H6yJJUnY9v Date: Mon, 17 Jun 2024 15:34:41 +0800 Subject: [PATCH 08/18] =?UTF-8?q?=E5=86=B2=E7=AA=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/coreImpl/checker/src/api_check_plugin.ts | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/build-tools/dts_parser/src/coreImpl/checker/src/api_check_plugin.ts b/build-tools/dts_parser/src/coreImpl/checker/src/api_check_plugin.ts index 5a12de1bd0..65311f6683 100644 --- a/build-tools/dts_parser/src/coreImpl/checker/src/api_check_plugin.ts +++ b/build-tools/dts_parser/src/coreImpl/checker/src/api_check_plugin.ts @@ -238,19 +238,7 @@ export class Check { singleApi.getDefinedText(), errorCodeResult.errorInfo, compositiveResult, - compositiveLocalResult - ErrorID.JSDOC_HAS_CHINESE, - ErrorLevel.MIDDLE, - singleApi.getFilePath(), - singleApi.getPos(), - ErrorType.JSDOC_HAS_CHINESE, - LogType.LOG_JSDOC, - toNumber(apiJsdoc.since), - singleApi.getApiName(), - singleApi.getDefinedText(), - chineseCheckResult.errorInfo, - compositiveResult, - compositiveLocalResult + compositiveLocalResult, ); } tagInheritCheckResult.forEach((inheritCheckResult: ErrorTagFormat) => { From 17de538e4e7ba019b9971bd1e8f57cc5c1e779fe Mon Sep 17 00:00:00 2001 From: huawei <3365582168@qq.com> Date: Mon, 17 Jun 2024 16:26:42 +0800 Subject: [PATCH 09/18] =?UTF-8?q?=E6=96=87=E4=BB=B6=E5=A4=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/coreImpl/checker/src/check_chinese.ts | 15 +++++++++++++++ .../src/coreImpl/checker/src/check_error_code.ts | 16 ++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/build-tools/dts_parser/src/coreImpl/checker/src/check_chinese.ts b/build-tools/dts_parser/src/coreImpl/checker/src/check_chinese.ts index 9037ec88b6..08a02b428e 100644 --- a/build-tools/dts_parser/src/coreImpl/checker/src/check_chinese.ts +++ b/build-tools/dts_parser/src/coreImpl/checker/src/check_chinese.ts @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + import {ErrorMessage, ErrorTagFormat,} from '../../../typedef/checker/result_type'; import {CommonFunctions} from '../../../utils/checkUtils'; import {Comment} from "../../../typedef/parser/Comment"; diff --git a/build-tools/dts_parser/src/coreImpl/checker/src/check_error_code.ts b/build-tools/dts_parser/src/coreImpl/checker/src/check_error_code.ts index 0a0215f00c..abb7996191 100644 --- a/build-tools/dts_parser/src/coreImpl/checker/src/check_error_code.ts +++ b/build-tools/dts_parser/src/coreImpl/checker/src/check_error_code.ts @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2023 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + import {Comment} from "../../../typedef/parser/Comment"; import {ErrorMessage, ErrorTagFormat} from "../../../typedef/checker/result_type"; import {CommonFunctions} from "../../../utils/checkUtils"; From 30ea1511f4a89dcd8e4578313ca58528772fa356 Mon Sep 17 00:00:00 2001 From: huawei <3365582168@qq.com> Date: Mon, 17 Jun 2024 16:59:24 +0800 Subject: [PATCH 10/18] =?UTF-8?q?=E6=9E=9A=E4=B8=BE=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build-tools/dts_parser/src/typedef/checker/result_type.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-tools/dts_parser/src/typedef/checker/result_type.ts b/build-tools/dts_parser/src/typedef/checker/result_type.ts index 40389248fe..0adf0de81e 100644 --- a/build-tools/dts_parser/src/typedef/checker/result_type.ts +++ b/build-tools/dts_parser/src/typedef/checker/result_type.ts @@ -60,7 +60,7 @@ export enum ErrorID { TS_SYNTAX_ERROR_ID = 13, NO_JSDOC_ID = 14, JSDOC_HAS_CHINESE = 15, - ERROR_ERROR_CODE + ERROR_ERROR_CODE = 16 } /** From 7a0ffd992f467d9a1178f47ee8f435163c5bd670 Mon Sep 17 00:00:00 2001 From: huawei <3365582168@qq.com> Date: Mon, 17 Jun 2024 17:02:25 +0800 Subject: [PATCH 11/18] =?UTF-8?q?=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dts_parser/src/coreImpl/checker/src/check_error_code.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-tools/dts_parser/src/coreImpl/checker/src/check_error_code.ts b/build-tools/dts_parser/src/coreImpl/checker/src/check_error_code.ts index abb7996191..30107997cd 100644 --- a/build-tools/dts_parser/src/coreImpl/checker/src/check_error_code.ts +++ b/build-tools/dts_parser/src/coreImpl/checker/src/check_error_code.ts @@ -26,6 +26,11 @@ export class CheckErrorCode { return Array.isArray(arr) && arr.length > 0; } + /** + * 判断数组arr1中的每个数字是否在数组arr2中 + * @param arr1 + * @param arr2 + */ static hasNumberInArray(arr1: number[], arr2: number[]): boolean { return arr1.every(num => arr2.includes(num)); } From bf916f9b7d1a93daf42f9d89fa1165b406a4b94c Mon Sep 17 00:00:00 2001 From: lixudong Date: Tue, 18 Jun 2024 15:02:09 +0800 Subject: [PATCH 12/18] =?UTF-8?q?=E7=BC=A9=E8=BF=9B=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../coreImpl/checker/src/api_check_plugin.ts | 48 +++++++++---------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/build-tools/dts_parser/src/coreImpl/checker/src/api_check_plugin.ts b/build-tools/dts_parser/src/coreImpl/checker/src/api_check_plugin.ts index 65311f6683..58b6b298a1 100644 --- a/build-tools/dts_parser/src/coreImpl/checker/src/api_check_plugin.ts +++ b/build-tools/dts_parser/src/coreImpl/checker/src/api_check_plugin.ts @@ -211,34 +211,34 @@ export class Check { } if (!chineseCheckResult.state) { AddErrorLogs.addAPICheckErrorLogs( - ErrorID.JSDOC_HAS_CHINESE, - ErrorLevel.MIDDLE, - singleApi.getFilePath(), - singleApi.getPos(), - ErrorType.JSDOC_HAS_CHINESE, - LogType.LOG_JSDOC, - toNumber(apiJsdoc.since), - singleApi.getApiName(), - singleApi.getDefinedText(), - chineseCheckResult.errorInfo, - compositiveResult, - compositiveLocalResult + ErrorID.JSDOC_HAS_CHINESE, + ErrorLevel.MIDDLE, + singleApi.getFilePath(), + singleApi.getPos(), + ErrorType.JSDOC_HAS_CHINESE, + LogType.LOG_JSDOC, + toNumber(apiJsdoc.since), + singleApi.getApiName(), + singleApi.getDefinedText(), + chineseCheckResult.errorInfo, + compositiveResult, + compositiveLocalResult ); } if (!errorCodeResult.state) { AddErrorLogs.addAPICheckErrorLogs( - ErrorID.ERROR_ERROR_CODE, - ErrorLevel.MIDDLE, - singleApi.getFilePath(), - singleApi.getPos(), - ErrorType.ERROR_ERROR_CODE, - LogType.LOG_JSDOC, - toNumber(apiJsdoc.since), - singleApi.getApiName(), - singleApi.getDefinedText(), - errorCodeResult.errorInfo, - compositiveResult, - compositiveLocalResult, + ErrorID.ERROR_ERROR_CODE, + ErrorLevel.MIDDLE, + singleApi.getFilePath(), + singleApi.getPos(), + ErrorType.ERROR_ERROR_CODE, + LogType.LOG_JSDOC, + toNumber(apiJsdoc.since), + singleApi.getApiName(), + singleApi.getDefinedText(), + errorCodeResult.errorInfo, + compositiveResult, + compositiveLocalResult, ); } tagInheritCheckResult.forEach((inheritCheckResult: ErrorTagFormat) => { From 729532247ed98bc605b691530451205279baa59b Mon Sep 17 00:00:00 2001 From: lixudong Date: Sat, 22 Jun 2024 08:38:01 +0800 Subject: [PATCH 13/18] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E7=BC=A9=E8=BF=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../coreImpl/checker/src/api_check_plugin.ts | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/build-tools/dts_parser/src/coreImpl/checker/src/api_check_plugin.ts b/build-tools/dts_parser/src/coreImpl/checker/src/api_check_plugin.ts index a64b96f457..64089412ab 100644 --- a/build-tools/dts_parser/src/coreImpl/checker/src/api_check_plugin.ts +++ b/build-tools/dts_parser/src/coreImpl/checker/src/api_check_plugin.ts @@ -262,22 +262,22 @@ export class Check { compositiveLocalResult ); } - if (!errorCodeResult.state) { - AddErrorLogs.addAPICheckErrorLogs( - ErrorID.ERROR_ERROR_CODE, - ErrorLevel.MIDDLE, - singleApi.getFilePath(), - singleApi.getPos(), - ErrorType.ERROR_ERROR_CODE, - LogType.LOG_JSDOC, - toNumber(apiJsdoc.since), - singleApi.getApiName(), - singleApi.getDefinedText(), - errorCodeResult.errorInfo, - compositiveResult, - compositiveLocalResult, - ); - } + if (!errorCodeResult.state) { + AddErrorLogs.addAPICheckErrorLogs( + ErrorID.ERROR_ERROR_CODE, + ErrorLevel.MIDDLE, + singleApi.getFilePath(), + singleApi.getPos(), + ErrorType.ERROR_ERROR_CODE, + LogType.LOG_JSDOC, + toNumber(apiJsdoc.since), + singleApi.getApiName(), + singleApi.getDefinedText(), + errorCodeResult.errorInfo, + compositiveResult, + compositiveLocalResult, + ); + } tagInheritCheckResult.forEach((InheritCheckResult: ErrorTagFormat) => { if (!InheritCheckResult.state) { AddErrorLogs.addAPICheckErrorLogs( From 5a641acf7ea6f618de082f1cbe0033b3713b41f2 Mon Sep 17 00:00:00 2001 From: lixudong Date: Mon, 24 Jun 2024 11:03:03 +0800 Subject: [PATCH 14/18] =?UTF-8?q?=E6=B5=8B=E8=AF=95=E7=94=A8=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../test/ut/apiCheck/API_ERROR_ERROR_CODE.ts | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 build-tools/dts_parser/test/ut/apiCheck/API_ERROR_ERROR_CODE.ts diff --git a/build-tools/dts_parser/test/ut/apiCheck/API_ERROR_ERROR_CODE.ts b/build-tools/dts_parser/test/ut/apiCheck/API_ERROR_ERROR_CODE.ts new file mode 100644 index 0000000000..8e5fc8bfaa --- /dev/null +++ b/build-tools/dts_parser/test/ut/apiCheck/API_ERROR_ERROR_CODE.ts @@ -0,0 +1,39 @@ +/* + * Copyright (c) 2022 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * @file + * @kit ConnectivityKit + */ + +/** + * @typedef StartBLEScanOptions + * @syscap SystemCapability.Communication.Bluetooth.Lite + * @since 6 + */ +export interface StartBLEScanOptions { + /** + * StartBLEScanOptions completed + * + * @throws { BusinessError } 401 - Parameter error. Possible causes: 1.Mandatory parameters are left unspecified; 2.Incorrect parameter types. + * @throws { BusinessError } 12100001 - Invalid parameter. The tokenID is 0, or the permissionName exceeds 256 characters. + * @syscap SystemCapability.Communication.Bluetooth.Lite + * @since 6 + */ + complete: () => void; +} + + + From ef2d49e93d37634e5fe8e2115f53823876494850 Mon Sep 17 00:00:00 2001 From: lixudong Date: Mon, 24 Jun 2024 11:31:23 +0800 Subject: [PATCH 15/18] =?UTF-8?q?=E6=B5=8B=E8=AF=95=E7=94=A8=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../test/ut/apiCheck/API_ERROR_ERROR_CODE.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build-tools/dts_parser/test/ut/apiCheck/API_ERROR_ERROR_CODE.ts b/build-tools/dts_parser/test/ut/apiCheck/API_ERROR_ERROR_CODE.ts index 8e5fc8bfaa..8d26a4de65 100644 --- a/build-tools/dts_parser/test/ut/apiCheck/API_ERROR_ERROR_CODE.ts +++ b/build-tools/dts_parser/test/ut/apiCheck/API_ERROR_ERROR_CODE.ts @@ -25,14 +25,14 @@ */ export interface StartBLEScanOptions { /** - * StartBLEScanOptions completed + * Initializes the connected NFC tag. * - * @throws { BusinessError } 401 - Parameter error. Possible causes: 1.Mandatory parameters are left unspecified; 2.Incorrect parameter types. - * @throws { BusinessError } 12100001 - Invalid parameter. The tokenID is 0, or the permissionName exceeds 256 characters. - * @syscap SystemCapability.Communication.Bluetooth.Lite - * @since 6 + * @throws { BusinessError } 209 - Capability not supported. + * @throws { BusinessError } 3200101 - Connected NFC tag running state is abnormal in service. + * @syscap SystemCapability.Communication.ConnectedTag + * @since 9 */ - complete: () => void; + initialize(): void; } From 559a89789661db1026b75900807309763c660268 Mon Sep 17 00:00:00 2001 From: lixudong Date: Mon, 24 Jun 2024 12:08:09 +0800 Subject: [PATCH 16/18] =?UTF-8?q?=E7=BC=A9=E8=BF=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../coreImpl/checker/src/check_error_code.ts | 57 ++++++++++--------- .../test/ut/apiCheck/API_ERROR_ERROR_CODE.ts | 18 +++--- 2 files changed, 38 insertions(+), 37 deletions(-) diff --git a/build-tools/dts_parser/src/coreImpl/checker/src/check_error_code.ts b/build-tools/dts_parser/src/coreImpl/checker/src/check_error_code.ts index 30107997cd..44a40c0728 100644 --- a/build-tools/dts_parser/src/coreImpl/checker/src/check_error_code.ts +++ b/build-tools/dts_parser/src/coreImpl/checker/src/check_error_code.ts @@ -20,34 +20,35 @@ import {CommonFunctions} from "../../../utils/checkUtils"; export class CheckErrorCode { - static errorCodeList: number[] = [201, 202, 203, 301, 401, 501, 502, 801, 901]; + static errorCodeList: number[] = [201, 202, 203, 301, 401, 501, 502, 801, 901]; - static isArrayNotEmpty(arr: any): boolean { - return Array.isArray(arr) && arr.length > 0; - } - - /** - * 判断数组arr1中的每个数字是否在数组arr2中 - * @param arr1 - * @param arr2 - */ - static hasNumberInArray(arr1: number[], arr2: number[]): boolean { - return arr1.every(num => arr2.includes(num)); - } - - static checkErrorCode(apiJsdoc: Comment.JsDocInfo): ErrorTagFormat { - const checkResult: ErrorTagFormat = { - state: true, - errorInfo: '', - }; - - const errorCodes = apiJsdoc.errorCodes.filter(number => number >= 100 && number < 1000);; - if (this.isArrayNotEmpty(errorCodes)) { - if (!this.hasNumberInArray(errorCodes, this.errorCodeList)) { - checkResult.state = false; - checkResult.errorInfo = ErrorMessage.ERROR_ERROR_CODE; - } - } - return checkResult; + static isArrayNotEmpty(arr: any): boolean { + return Array.isArray(arr) && arr.length > 0; + } + + /** + * 判断数组arr1中的每个数字是否在数组arr2中 + * @param arr1 + * @param arr2 + */ + static hasNumberInArray(arr1: number[], arr2: number[]): boolean { + return arr1.every(num => arr2.includes(num)); + } + + static checkErrorCode(apiJsdoc: Comment.JsDocInfo): ErrorTagFormat { + const checkResult: ErrorTagFormat = { + state: true, + errorInfo: '', + }; + + const errorCodes = apiJsdoc.errorCodes.filter(number => number >= 100 && number < 1000); + ; + if (this.isArrayNotEmpty(errorCodes)) { + if (!this.hasNumberInArray(errorCodes, this.errorCodeList)) { + checkResult.state = false; + checkResult.errorInfo = ErrorMessage.ERROR_ERROR_CODE; + } } + return checkResult; + } } \ No newline at end of file diff --git a/build-tools/dts_parser/test/ut/apiCheck/API_ERROR_ERROR_CODE.ts b/build-tools/dts_parser/test/ut/apiCheck/API_ERROR_ERROR_CODE.ts index 8d26a4de65..781a54a881 100644 --- a/build-tools/dts_parser/test/ut/apiCheck/API_ERROR_ERROR_CODE.ts +++ b/build-tools/dts_parser/test/ut/apiCheck/API_ERROR_ERROR_CODE.ts @@ -24,15 +24,15 @@ * @since 6 */ export interface StartBLEScanOptions { - /** - * Initializes the connected NFC tag. - * - * @throws { BusinessError } 209 - Capability not supported. - * @throws { BusinessError } 3200101 - Connected NFC tag running state is abnormal in service. - * @syscap SystemCapability.Communication.ConnectedTag - * @since 9 - */ - initialize(): void; + /** + * Initializes the connected NFC tag. + * + * @throws { BusinessError } 209 - Capability not supported. + * @throws { BusinessError } 3200101 - Connected NFC tag running state is abnormal in service. + * @syscap SystemCapability.Communication.ConnectedTag + * @since 9 + */ + initialize(): void; } From 9a0609b17388bc6ba9a664e7e3fd4e047bdd6bd5 Mon Sep 17 00:00:00 2001 From: lixudong <7518382+lixudong1997@user.noreply.gitee.com> Date: Tue, 25 Jun 2024 02:17:34 +0000 Subject: [PATCH 17/18] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20bu?= =?UTF-8?q?ild-tools/mdFiles.txt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build-tools/mdFiles.txt | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 build-tools/mdFiles.txt diff --git a/build-tools/mdFiles.txt b/build-tools/mdFiles.txt deleted file mode 100644 index f9f0cb2145..0000000000 --- a/build-tools/mdFiles.txt +++ /dev/null @@ -1,2 +0,0 @@ -# api absolute path -Z:\root\interface\sdk-js\api\xxx.d.ts \ No newline at end of file From 9c47587f929f1416e220979ddd436bf7ea5cc85e Mon Sep 17 00:00:00 2001 From: lixudong Date: Tue, 25 Jun 2024 10:22:10 +0800 Subject: [PATCH 18/18] mdFiles --- build-tools/mdFiles.txt | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 build-tools/mdFiles.txt diff --git a/build-tools/mdFiles.txt b/build-tools/mdFiles.txt new file mode 100644 index 0000000000..f9f0cb2145 --- /dev/null +++ b/build-tools/mdFiles.txt @@ -0,0 +1,2 @@ +# api absolute path +Z:\root\interface\sdk-js\api\xxx.d.ts \ No newline at end of file