diff --git a/build-tools/del_api_fromjson_plugin.js b/build-tools/del_api_fromjson_plugin.js new file mode 100644 index 0000000000000000000000000000000000000000..a95b204c05b488a2064287ce0d18d29bf4e9b98b --- /dev/null +++ b/build-tools/del_api_fromjson_plugin.js @@ -0,0 +1,502 @@ +/* + * Copyright (c) 2021-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. + */ +const path = require('path'); +const fs = require('fs'); +const ts = require('typescript'); + +let sourceFile = null; +let lastNoteStr = ''; +let lastNodeName = ''; + +let separatorStr = '&&MMDD%'; +let constSet = new Set(); +let interfaceSet = new Set(); +let methodMap = new Map(); +let currentFileName = ''; +let regreplace = new RegExp("/", "g"); + +function readJSON() { + const content = fs.readFileSync("deleted_api.json"); + var obj = JSON.parse(content); + for (var i = 0 ; i < obj.length ; i++) + { + var filePath = obj[i]["path"]; + if (obj[i]["classname"] == obj[i]["methodname"]) { + var searchStr = filePath + separatorStr + obj[i]["classname"]; + interfaceSet.add(searchStr); + continue; + } + if (obj[i]["methodname2"].substring(0, 8) == 'function'){ + var strs = obj[i]["methodname"].split('_'); + var key = filePath + separatorStr + strs[0]; + var value = obj[i]["methodname2"]; + if (methodMap.has(key)) { + var keyv = methodMap.get(key); + keyv = keyv + value; + methodMap.set(key, keyv); + } else { + methodMap.set(key, value); + } + continue; + } + if (obj[i]["api type"] == "Constant") { + var searchStr = filePath + separatorStr + obj[i]["methodname2"]; + constSet.add(searchStr); + continue; + } + if (obj[i]["methodname2"].includes('(type:')) { + var strsTypeLeft = obj[i]["methodname2"].split('(type:'); + var strs = obj[i]["methodname"].split('_'); + if (strsTypeLeft[0] == strs[0]) { + var key = filePath + separatorStr + obj[i]["classname"] + separatorStr + strs[0]; + var value = obj[i]["methodname2"]; + if (methodMap.has(key)) { + var keyv = methodMap.get(key); + keyv = keyv + value; + methodMap.set(key, keyv); + } else { + methodMap.set(key, value); + } + } + continue; + } + if (obj[i]["methodname2"].includes('(event:')) { + var strsTypeLeft = obj[i]["methodname2"].split('(event:'); + var strs = obj[i]["methodname"].split('_'); + if (strsTypeLeft[0] == strs[0]) { + var key = filePath + separatorStr + obj[i]["classname"] + separatorStr + strs[0]; + var value = obj[i]["methodname2"]; + if (methodMap.has(key)) { + var keyv = methodMap.get(key); + keyv = keyv + value; + methodMap.set(key, keyv); + } else { + methodMap.set(key, value); + } + } + } else { + var key = filePath + separatorStr + obj[i]["classname"] + separatorStr + obj[i]["methodname"]; + var value = obj[i]["methodname2"]; + if (methodMap.has(key)) { + var keyv = methodMap.get(key); + keyv = keyv + value; + methodMap.set(key, keyv); + } else { + methodMap.set(key, value); + } + } + } + collectDeclaration(apiSourcePath); +} + +function collectDeclaration(url) { + try { + const utPath = path.resolve(__dirname, url); + const utFiles = []; + readFile(utPath, utFiles); + tsTransform(utFiles, deleteSystemApi); + } catch (error) { + console.error("DELETE_SYSTEM_PLUGIN ERROR: ", error) + } +} + +function tsTransform(utFiles, callback) { + utFiles.forEach((url) => { + var relative_path = path.relative(apiSourcePath, url); + relative_path = "\\api\\" + relative_path; + relative_path = relative_path.replace(regreplace, '\\'); + currentFileName = relative_path; + + if (/\.json/.test(url) || /index\-full\.d\.ts/.test(url) || /common\.d\.ts/.test(url)) { + const content = fs.readFileSync(url, 'utf-8'); + writeFile(url, content); + } else if (/\.d\.ts/.test(url)) { + const content = fs.readFileSync(url, 'utf-8'); + const fileName = path.basename(url).replace(/.d.ts/g, '.ts'); + ts.transpileModule(content, { + compilerOptions: { + "target": ts.ScriptTarget.ES2017 + }, + fileName: fileName, + transformers: { before: [callback(url)] } + }); + } + }); +} + +function readFile(dir, utFiles) { + try { + const files = fs.readdirSync(dir); + files.forEach((element) => { + const filePath = path.join(dir, element); + const status = fs.statSync(filePath); + if (status.isDirectory()) { + readFile(filePath, utFiles); + } else { + utFiles.push(filePath); + } + }) + } catch (e) { + console.log('ETS ERROR: ' + e); + } +} + +function writeFile(url, data, option) { + if (fs.existsSync(outputPath)) { + fs.rmdirSync(outputPath, { recursive: true }); + } + const newFilePath = path.resolve(outputPath, path.relative(__dirname, url)); + fs.mkdir(path.relative(__dirname, path.dirname(newFilePath)), { recursive: true }, (err) => { + if (err) { + console.log(`ERROR FOR CREATE PATH ${err}`); + } else { + fs.writeFile(newFilePath, data, option, (err) => { + if (err) { + console.log(`ERROR FOR CREATE FILE ${err}`); + } + }) + } + }) +} + +const globalModules = new Set(['GlobalResource', 'StateManagement', 'SpecialEvent']); + +function formatImportDeclaration(url) { + return (context) => { + const allIdentifierSet = new Set([]); + let copyrightMessage = ''; + let isCopyrightDeleted = false; + return (node) => { + sourceFile = node; + collectAllIdentifier(node); + node = formatAllNodes(node); + if (!isEmptyFile(node)) { + const printer = ts.createPrinter({ newLine: ts.NewLineKind.LineFeed }); + let result = printer.printNode(ts.EmitHint.Unspecified, node, sourceFile); + if (isCopyrightDeleted) { + result = copyrightMessage + '\n' + result; + } + writeFile(url, result); + } + return node; + } + function collectAllIdentifier(node) { + if (ts.isSourceFile(node) && node.statements) { + node.statements.forEach(stat => { + if (!ts.isImportDeclaration(stat)) { + ts.visitEachChild(stat, collectAllNodes, context); + } + }); + } + } + function collectAllNodes(node) { + if (ts.isIdentifier(node)) { + allIdentifierSet.add(node.escapedText.toString()); + } + return ts.visitEachChild(node, collectAllNodes, context); + } + function formatAllNodes(node) { + if (ts.isSourceFile(node) && node.statements) { + const newStatements = []; + node.statements.forEach(statement => { + if (ts.isImportDeclaration(statement)) { + const clauseSet = new Set([]); + if (statement.importClause && ts.isImportClause(statement.importClause)) { + const clauseNode = statement.importClause; + if (!clauseNode.namedBindings && clauseNode.name && ts.isIdentifier(clauseNode.name)) { + clauseSet.add(clauseNode.name.escapedText.toString()); + } else if (clauseNode.namedBindings && clauseNode.namedBindings.name && + ts.isIdentifier(clauseNode.namedBindings.name)) { + clauseSet.add(clauseNode.namedBindings.name.escapedText.toString()); + } else if (clauseNode.namedBindings && clauseNode.namedBindings.elements) { + clauseNode.namedBindings.elements.forEach(ele => { + if (ele.name && ts.isIdentifier(ele.name)) { + clauseSet.add(ele.name.escapedText.toString()); + } + }); + } + } + const importSpecifier = statement.moduleSpecifier.getText().replace(/[\'\"]/g, ''); + const importSpecifierRealPath = path.resolve(url, `../${importSpecifier}.d.ts`); + if ((fs.existsSync(importSpecifierRealPath) || globalModules.has(importSpecifier)) && clauseSet.size > 0) { + const clasueCheckList = []; + let exsitClauseSet = new Set([]); + for (const clause of clauseSet) { + if (allIdentifierSet.has(clause)) { + exsitClauseSet.add(clause); + clasueCheckList.push('exist'); + } else { + clasueCheckList.push('non-exist'); + } + } + let hasExsitStatus = false; + let hasNonExsitStatus = false; + clasueCheckList.forEach(ele => { + if (ele === 'exist') { + hasExsitStatus = true; + } else { + hasNonExsitStatus = true; + } + }); + if (hasExsitStatus) { + if (hasNonExsitStatus) { + const newSpecifiers = []; + statement.importClause.namedBindings.elements.forEach(element => { + if (exsitClauseSet.has(element.name.escapedText.toString())) { + newSpecifiers.push(element); + } + }); + statement.importClause.namedBindings = ts.factory.updateNamedImports( + statement.importClause.namedBindings, newSpecifiers); + } + newStatements.push(statement); + } else if (hasCopyright(statement)) { + copyrightMessage = node.getFullText().replace(node.getText(), ''); + isCopyrightDeleted = true; + } + } else if (hasCopyright(statement)) { + copyrightMessage = node.getFullText().replace(node.getText(), ''); + isCopyrightDeleted = true; + } + } else { + newStatements.push(statement); + } + }); + node = ts.factory.updateSourceFile(node, newStatements); + } + return node; + } + function hasCopyright(node) { + return /http\:\/\/www\.apache\.org\/licenses\/LICENSE\-2\.0/g.test(node.getFullText().replace(node.getText(), '')); + } + } +} + +function deleteSystemApi(url) { + return (context) => { + return (node) => { + sourceFile = node; + node = processSourceFile(node); + node = ts.visitEachChild(node, processAllNodes, context); + if (!isEmptyFile(node)) { + const printer = ts.createPrinter({ newLine: ts.NewLineKind.LineFeed }); + const result = printer.printNode(ts.EmitHint.Unspecified, node, sourceFile); + const fileName = path.basename(url).replace(/.d.ts/g, '.ts'); + ts.transpileModule(result, { + compilerOptions: { + "target": ts.ScriptTarget.ES2017 + }, + fileName: fileName, + transformers: { before: [formatImportDeclaration(url)] } + }); + } + return node; + } + function processAllNodes(node) { + if (ts.isInterfaceDeclaration(node)) { + const newMembers = []; + node.members.forEach(member => { + if (!isSystemapi(member)) { + newMembers.push(member); + } + }); + node = ts.factory.updateInterfaceDeclaration(node, node.modifiers, node.name, + node.typeParameters, node.heritageClauses, newMembers); + } else if (ts.isClassDeclaration(node)) { + const newMembers = []; + node.members.forEach(member => { + if (!isSystemapi(member)) { + newMembers.push(member); + } + }); + node = ts.factory.updateClassDeclaration(node, node.modifiers, node.name, + node.typeParameters, node.heritageClauses, newMembers); + } else if (ts.isModuleDeclaration(node) && node.body && ts.isModuleBlock(node.body)) { + const newStatements = []; + node.body.statements.forEach(statement => { + if (!isSystemapi(statement)) { + newStatements.push(statement); + } + }); + const newModuleBody = ts.factory.updateModuleBlock(node.body, newStatements); + node = ts.factory.updateModuleDeclaration(node, node.modifiers, node.name, newModuleBody); + } else if (ts.isEnumDeclaration(node)) { + const newMembers = []; + node.members.forEach(member => { + if (!isSystemapi(member)) { + newMembers.push(member); + } + }); + node = ts.factory.updateEnumDeclaration(node, node.modifiers, node.name, newMembers); + } + return ts.visitEachChild(node, processAllNodes, context); + } + function processSourceFile(node) { + const stateNamesSet = new Set([]); + const newStatements = []; + const newStatementsWithoutExport = []; + node.statements.forEach(statement => { + if (!isSystemapi(statement)) { + newStatements.push(statement); + } else if (ts.isModuleDeclaration(statement) && statement.name && ts.isIdentifier(statement.name)) { + stateNamesSet.add(statement.name.escapedText.toString()); + } + }); + newStatements.forEach(statement => { + if (!(ts.isExportAssignment(statement) && statement.expression && ts.isIdentifier(statement.expression) && + stateNamesSet.has(statement.expression.escapedText.toString()))) { + newStatementsWithoutExport.push(statement); + } + }); + return ts.factory.updateSourceFile(node, newStatementsWithoutExport, node.isDeclarationFile, + node.referencedFiles); + } + } +} +exports.deleteSystemApi = deleteSystemApi; + +function isSystemapi(node) { + const notesContent = node.getFullText().replace(node.getText(), "").replace(/[\s]/g, ""); + const notesArr = notesContent.split(/\/\*\*/); + const notesStr = notesArr[notesArr.length - 1]; + var isSysApi = false; + if (notesStr.length !== 0) { + if (ts.isFunctionDeclaration(node) || ts.isMethodSignature(node) || ts.isMethodDeclaration(node)) { + lastNodeName = node.name && node.name.escapedText ? node.name.escapedText.toString() : ""; + lastNoteStr = notesStr; + } + isSysApi = /\@systemapi/g.test(notesStr); + } else { + if ((ts.isFunctionDeclaration(node) || ts.isMethodSignature(node) || ts.isMethodDeclaration(node)) && node.name && + node.name.escapedText.toString() !== "" && node.name.escapedText.toString() === lastNodeName) { + isSysApi = /\@systemapi/g.test(lastNoteStr); + } + } + + if (!isSysApi) { + return isWithInJson(node); + } + + return isSysApi; +} + +function isWithInJson(node) { + if (ts.isFunctionDeclaration(node)) { + var methodStr = currentFileName + separatorStr + node.name.escapedText.toString(); + var strs = node.getFullText().split('\n'); + var funcStr = strs[strs.length -1]; + funcStr = funcStr.trim(); + if (funcStr.substring(0, 7) == "export ") { + funcStr = funcStr.substr(7); + } + if (methodMap.has(methodStr)) { + if (methodMap.get(methodStr).includes(funcStr)) { + return true; + } + return false; + } + return false; + } + if (ts.isInterfaceDeclaration(node) | ts.isClassDeclaration(node) | ts.isEnumDeclaration(node)) { + var interfaceName = currentFileName + separatorStr + node.name.escapedText.toString(); + if (interfaceSet.has(interfaceName)) { + return true; + } + return false; + } + if (ts.isMethodDeclaration(node) | ts.isMethodSignature(node)) { + if (node.parent.name.escapedText == undefined || node.name.escapedText == undefined) { + return false; + } + var methodStr = currentFileName + separatorStr + node.parent.name.escapedText.toString() + separatorStr + node.name.escapedText.toString(); + var strs = node.getFullText().split('\n'); + var funcStr = strs[strs.length -1]; + funcStr = funcStr.trim(); + if (funcStr.substring(0, 7) == "export ") { + funcStr = funcStr.substr(7); + } + if (methodMap.has(methodStr)) { + if (methodMap.get(methodStr).includes(funcStr)) { + return true; + } + return false; + } + return false; + } + if (ts.isEnumMember(node)) { + var enumMember = currentFileName + separatorStr + node.parent.name.escapedText.toString() + separatorStr + node.name.escapedText.toString(); + if (methodMap.has(enumMember)) { + return true; + } + return false; + } + if (ts.isPropertySignature(node)) { + var property = currentFileName + separatorStr + node.parent.name.escapedText.toString() + separatorStr + node.name.escapedText.toString(); + if (methodMap.has(property)) { + return true; + } + return false; + } + if (ts.isPropertyDeclaration(node)) { + var property = currentFileName + separatorStr + node.parent.name.escapedText.toString() + separatorStr + node.name.escapedText.toString(); + if (methodMap.has(property)) { + return true; + } + return false; + } + + if (ts.isConstructorDeclaration(node)) { + var methodStr = currentFileName + separatorStr + node.parent.name.escapedText.toString() + separatorStr + 'constructor'; + var strs = node.getFullText().split('\n'); + var funcStr = strs[strs.length -1]; + funcStr = funcStr.trim(); + if (methodMap.has(methodStr)) { + if (methodMap.get(methodStr).includes(funcStr)) { + return true; + } + return false; + } + return false; + } + if (ts.isVariableStatement(node)) { + var strs = node.getFullText().split('\n'); + var funcStr = strs[strs.length -1]; + funcStr = funcStr.trim(); + var constKeystr = currentFileName + separatorStr + funcStr; + if (constSet.has(constKeystr)) { + return true; + } + return false; + } + + return false; +} + +function isEmptyFile(node) { + if (ts.isSourceFile(node) && node.statements) { + for (let i = 0; i < node.statements.length; i++) { + const statement = node.statements[i]; + if (!ts.isImportDeclaration(statement)) { + return false + } + } + } + return true; +} + +const apiSourcePath = '../api'; +const outputPath = path.resolve(__dirname, 'output'); +readJSON(); + diff --git a/build-tools/deleted_api.json b/build-tools/deleted_api.json new file mode 100644 index 0000000000000000000000000000000000000000..779676fe13392ec1e562b444fc89eb9607e85b8d --- /dev/null +++ b/build-tools/deleted_api.json @@ -0,0 +1,19906 @@ +[ + { + "module name": "ohos.accessibility", + "classname": "accessibility", + "methodname": "isOpenAccessibility", + "methodname2": "function isOpenAccessibility(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "accessibility", + "methodname": "isOpenAccessibility", + "methodname2": "function isOpenAccessibility(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "accessibility", + "methodname": "isOpenTouchGuide", + "methodname2": "function isOpenTouchGuide(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "accessibility", + "methodname": "isOpenTouchGuide", + "methodname2": "function isOpenTouchGuide(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "accessibility", + "methodname": "getAbilityLists", + "methodname2": "function getAbilityLists(abilityType: AbilityType, stateType: AbilityState,\n callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "accessibility", + "methodname": "getAbilityLists", + "methodname2": "function getAbilityLists(abilityType: AbilityType,\n stateType: AbilityState): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "accessibility", + "methodname": "getAccessibilityExtensionList", + "methodname2": "function getAccessibilityExtensionList(abilityType: AbilityType, stateType: AbilityState): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "accessibility", + "methodname": "getAccessibilityExtensionList", + "methodname2": "function getAccessibilityExtensionList(abilityType: AbilityType, stateType: AbilityState, callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "accessibility", + "methodname": "sendEvent", + "methodname2": "function sendEvent(event: EventInfo, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "accessibility", + "methodname": "sendEvent", + "methodname2": "function sendEvent(event: EventInfo): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "accessibility", + "methodname": "sendAccessibilityEvent", + "methodname2": "function sendAccessibilityEvent(event: EventInfo, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "accessibility", + "methodname": "sendAccessibilityEvent", + "methodname2": "function sendAccessibilityEvent(event: EventInfo): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "accessibility", + "methodname": "on_accessibilityStateChange", + "methodname2": "function on(type: 'accessibilityStateChange', callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "accessibility", + "methodname": "on_touchGuideStateChange", + "methodname2": "function on(type: 'touchGuideStateChange', callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "accessibility", + "methodname": "off_accessibilityStateChange", + "methodname2": "function off(type: 'accessibilityStateChange', callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "accessibility", + "methodname": "off_touchGuideStateChange", + "methodname2": "function off(type: 'touchGuideStateChange', callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "accessibility", + "methodname": "getCaptionsManager", + "methodname2": "function getCaptionsManager(): CaptionsManager;", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "CaptionsManager", + "methodname": "enabled", + "methodname2": "enabled: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "CaptionsManager", + "methodname": "style", + "methodname2": "style: CaptionsStyle;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "CaptionsManager", + "methodname": "on_enableChange", + "methodname2": "on(type: 'enableChange', callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "CaptionsManager", + "methodname": "on_styleChange", + "methodname2": "on(type: 'styleChange', callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "CaptionsManager", + "methodname": "off_enableChange", + "methodname2": "off(type: 'enableChange', callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "CaptionsManager", + "methodname": "off_styleChange", + "methodname2": "off(type: 'styleChange', callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "CaptionsStyle", + "methodname": "fontFamily", + "methodname2": "fontFamily: CaptionsFontFamily;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "CaptionsStyle", + "methodname": "fontScale", + "methodname2": "fontScale: number;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "CaptionsStyle", + "methodname": "fontColor", + "methodname2": "fontColor: number | string;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "CaptionsStyle", + "methodname": "fontEdgeType", + "methodname2": "fontEdgeType: CaptionsFontEdgeType;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "CaptionsStyle", + "methodname": "backgroundColor", + "methodname2": "backgroundColor: number | string;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "CaptionsStyle", + "methodname": "windowColor", + "methodname2": "windowColor: number | string;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "AccessibilityAbilityInfo", + "methodname": "id", + "methodname2": "readonly id: string;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "AccessibilityAbilityInfo", + "methodname": "name", + "methodname2": "readonly name: string;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "AccessibilityAbilityInfo", + "methodname": "bundleName", + "methodname2": "readonly bundleName: string;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "AccessibilityAbilityInfo", + "methodname": "targetBundleNames", + "methodname2": "readonly targetBundleNames: Array;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "AccessibilityAbilityInfo", + "methodname": "abilityTypes", + "methodname2": "readonly abilityTypes: Array;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "AccessibilityAbilityInfo", + "methodname": "capabilities", + "methodname2": "readonly capabilities: Array;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "AccessibilityAbilityInfo", + "methodname": "description", + "methodname2": "readonly description: string;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "AccessibilityAbilityInfo", + "methodname": "eventTypes", + "methodname2": "readonly eventTypes: Array;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "EventInfo", + "methodname": "constructor", + "methodname2": "constructor(jsonObject);", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "EventInfo", + "methodname": "type", + "methodname2": "type: EventType;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "EventInfo", + "methodname": "windowUpdateType", + "methodname2": "windowUpdateType?: WindowUpdateType;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "EventInfo", + "methodname": "bundleName", + "methodname2": "bundleName: string;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "EventInfo", + "methodname": "componentType", + "methodname2": "componentType?: string;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "EventInfo", + "methodname": "pageId", + "methodname2": "pageId ?: number;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "EventInfo", + "methodname": "description", + "methodname2": "description?: string;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "EventInfo", + "methodname": "triggerAction", + "methodname2": "triggerAction: Action;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "EventInfo", + "methodname": "textMoveUnit", + "methodname2": "textMoveUnit?: TextMoveUnit;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "EventInfo", + "methodname": "contents", + "methodname2": "contents?: Array;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "EventInfo", + "methodname": "lastContent", + "methodname2": "lastContent?: string;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "EventInfo", + "methodname": "beginIndex", + "methodname2": "beginIndex?: number;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "EventInfo", + "methodname": "currentIndex", + "methodname2": "currentIndex?: number;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "EventInfo", + "methodname": "endIndex", + "methodname2": "endIndex?: number;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility", + "classname": "EventInfo", + "methodname": "itemCount", + "methodname2": "itemCount?: number;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.d.ts" + }, + { + "module name": "ohos.accessibility.GesturePath", + "classname": "GesturePath", + "methodname": "constructor", + "methodname2": "constructor(durationTime: number);", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.GesturePath.d.ts" + }, + { + "module name": "ohos.accessibility.GesturePath", + "classname": "GesturePath", + "methodname": "points", + "methodname2": "points: Array;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.GesturePath.d.ts" + }, + { + "module name": "ohos.accessibility.GesturePath", + "classname": "GesturePath", + "methodname": "durationTime", + "methodname2": "durationTime: number;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.GesturePath.d.ts" + }, + { + "module name": "ohos.accessibility.GesturePoint", + "classname": "GesturePoint", + "methodname": "constructor", + "methodname2": "constructor(positionX: number, positionY: number);", + "api type": "Method", + "path": "\\api\\@ohos.accessibility.GesturePoint.d.ts" + }, + { + "module name": "ohos.accessibility.GesturePoint", + "classname": "GesturePoint", + "methodname": "positionX", + "methodname2": "positionX: number;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.GesturePoint.d.ts" + }, + { + "module name": "ohos.accessibility.GesturePoint", + "classname": "GesturePoint", + "methodname": "positionY", + "methodname2": "positionY: number;", + "api type": "Field", + "path": "\\api\\@ohos.accessibility.GesturePoint.d.ts" + }, + { + "module name": "ohos.account.distributedAccount", + "classname": "distributedAccount", + "methodname": "getDistributedAccountAbility", + "methodname2": "function getDistributedAccountAbility(): DistributedAccountAbility;", + "api type": "Method", + "path": "\\api\\@ohos.account.distributedAccount.d.ts" + }, + { + "module name": "ohos.account.distributedAccount", + "classname": "DistributedAccountAbility", + "methodname": "queryOsAccountDistributedInfo", + "methodname2": "queryOsAccountDistributedInfo(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.account.distributedAccount.d.ts" + }, + { + "module name": "ohos.account.distributedAccount", + "classname": "DistributedAccountAbility", + "methodname": "queryOsAccountDistributedInfo", + "methodname2": "queryOsAccountDistributedInfo(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.account.distributedAccount.d.ts" + }, + { + "module name": "ohos.account.distributedAccount", + "classname": "DistributedAccountAbility", + "methodname": "getOsAccountDistributedInfo", + "methodname2": "getOsAccountDistributedInfo(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.account.distributedAccount.d.ts" + }, + { + "module name": "ohos.account.distributedAccount", + "classname": "DistributedAccountAbility", + "methodname": "getOsAccountDistributedInfo", + "methodname2": "getOsAccountDistributedInfo(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.account.distributedAccount.d.ts" + }, + { + "module name": "ohos.account.distributedAccount", + "classname": "DistributedAccountAbility", + "methodname": "updateOsAccountDistributedInfo", + "methodname2": "updateOsAccountDistributedInfo(accountInfo: DistributedInfo, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.account.distributedAccount.d.ts" + }, + { + "module name": "ohos.account.distributedAccount", + "classname": "DistributedAccountAbility", + "methodname": "updateOsAccountDistributedInfo", + "methodname2": "updateOsAccountDistributedInfo(accountInfo: DistributedInfo): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.account.distributedAccount.d.ts" + }, + { + "module name": "ohos.account.distributedAccount", + "classname": "DistributedAccountAbility", + "methodname": "setOsAccountDistributedInfo", + "methodname2": "setOsAccountDistributedInfo(accountInfo: DistributedInfo, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.account.distributedAccount.d.ts" + }, + { + "module name": "ohos.account.distributedAccount", + "classname": "DistributedAccountAbility", + "methodname": "setOsAccountDistributedInfo", + "methodname2": "setOsAccountDistributedInfo(accountInfo: DistributedInfo): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.account.distributedAccount.d.ts" + }, + { + "module name": "ohos.account.distributedAccount", + "classname": "DistributedInfo", + "methodname": "name", + "methodname2": "name: string;", + "api type": "Field", + "path": "\\api\\@ohos.account.distributedAccount.d.ts" + }, + { + "module name": "ohos.account.distributedAccount", + "classname": "DistributedInfo", + "methodname": "id", + "methodname2": "id: string;", + "api type": "Field", + "path": "\\api\\@ohos.account.distributedAccount.d.ts" + }, + { + "module name": "ohos.account.distributedAccount", + "classname": "DistributedInfo", + "methodname": "event", + "methodname2": "event: string;", + "api type": "Field", + "path": "\\api\\@ohos.account.distributedAccount.d.ts" + }, + { + "module name": "ohos.account.distributedAccount", + "classname": "DistributedInfo", + "methodname": "nickname", + "methodname2": "nickname?: string;", + "api type": "Field", + "path": "\\api\\@ohos.account.distributedAccount.d.ts" + }, + { + "module name": "ohos.account.distributedAccount", + "classname": "DistributedInfo", + "methodname": "avatar", + "methodname2": "avatar?: string;", + "api type": "Field", + "path": "\\api\\@ohos.account.distributedAccount.d.ts" + }, + { + "module name": "ohos.account.distributedAccount", + "classname": "DistributedInfo", + "methodname": "scalableData", + "methodname2": "scalableData?: object;", + "api type": "Field", + "path": "\\api\\@ohos.account.distributedAccount.d.ts" + }, + { + "module name": "ohos.app.ability.Ability", + "classname": "Ability", + "methodname": "onSaveState", + "methodname2": "onSaveState(reason: AbilityConstant.StateType, wantParam : {[key: string]: any}): AbilityConstant.OnSaveResult;", + "api type": "Method", + "path": "\\api\\@ohos.app.ability.Ability.d.ts" + }, + { + "module name": "ohos.application.AccessibilityExtensionAbility", + "classname": "AccessibilityExtensionAbility", + "methodname": "context", + "methodname2": "context: AccessibilityExtensionContext;", + "api type": "Field", + "path": "\\api\\@ohos.application.AccessibilityExtensionAbility.d.ts" + }, + { + "module name": "ohos.application.AccessibilityExtensionAbility", + "classname": "AccessibilityExtensionAbility", + "methodname": "onConnect", + "methodname2": "onConnect(): void;", + "api type": "Method", + "path": "\\api\\@ohos.application.AccessibilityExtensionAbility.d.ts" + }, + { + "module name": "ohos.application.AccessibilityExtensionAbility", + "classname": "AccessibilityExtensionAbility", + "methodname": "onDisconnect", + "methodname2": "onDisconnect(): void;", + "api type": "Method", + "path": "\\api\\@ohos.application.AccessibilityExtensionAbility.d.ts" + }, + { + "module name": "ohos.application.AccessibilityExtensionAbility", + "classname": "AccessibilityExtensionAbility", + "methodname": "onAccessibilityEvent", + "methodname2": "onAccessibilityEvent(event: AccessibilityEvent): void;", + "api type": "Method", + "path": "\\api\\@ohos.application.AccessibilityExtensionAbility.d.ts" + }, + { + "module name": "ohos.application.AccessibilityExtensionAbility", + "classname": "AccessibilityExtensionAbility", + "methodname": "onKeyEvent", + "methodname2": "onKeyEvent(keyEvent: KeyEvent): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.application.AccessibilityExtensionAbility.d.ts" + }, + { + "module name": "ohos.application.AccessibilityExtensionAbility", + "classname": "AccessibilityEvent", + "methodname": "eventType", + "methodname2": "eventType: accessibility.EventType | accessibility.WindowUpdateType |\n TouchGuideType | GestureType | PageUpdateType;", + "api type": "Field", + "path": "\\api\\@ohos.application.AccessibilityExtensionAbility.d.ts" + }, + { + "module name": "ohos.application.AccessibilityExtensionAbility", + "classname": "AccessibilityEvent", + "methodname": "target", + "methodname2": "target?: AccessibilityElement;", + "api type": "Field", + "path": "\\api\\@ohos.application.AccessibilityExtensionAbility.d.ts" + }, + { + "module name": "ohos.application.AccessibilityExtensionAbility", + "classname": "AccessibilityEvent", + "methodname": "timeStamp", + "methodname2": "timeStamp?: number;", + "api type": "Field", + "path": "\\api\\@ohos.application.AccessibilityExtensionAbility.d.ts" + }, + { + "module name": "ohos.backgroundTaskManager", + "classname": "DelaySuspendInfo", + "methodname": "requestId", + "methodname2": "requestId: number;", + "api type": "Field", + "path": "\\api\\@ohos.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.backgroundTaskManager", + "classname": "DelaySuspendInfo", + "methodname": "actualDelayTime", + "methodname2": "actualDelayTime: number;", + "api type": "Field", + "path": "\\api\\@ohos.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.backgroundTaskManager", + "classname": "backgroundTaskManager", + "methodname": "cancelSuspendDelay", + "methodname2": "function cancelSuspendDelay(requestId: number): void;", + "api type": "Method", + "path": "\\api\\@ohos.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.backgroundTaskManager", + "classname": "backgroundTaskManager", + "methodname": "getRemainingDelayTime", + "methodname2": "function getRemainingDelayTime(requestId: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.backgroundTaskManager", + "classname": "backgroundTaskManager", + "methodname": "getRemainingDelayTime", + "methodname2": "function getRemainingDelayTime(requestId: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.backgroundTaskManager", + "classname": "backgroundTaskManager", + "methodname": "requestSuspendDelay", + "methodname2": "function requestSuspendDelay(reason: string, callback: Callback): DelaySuspendInfo;", + "api type": "Method", + "path": "\\api\\@ohos.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.backgroundTaskManager", + "classname": "backgroundTaskManager", + "methodname": "startBackgroundRunning", + "methodname2": "function startBackgroundRunning(context: Context, bgMode: BackgroundMode, wantAgent: WantAgent, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.backgroundTaskManager", + "classname": "backgroundTaskManager", + "methodname": "startBackgroundRunning", + "methodname2": "function startBackgroundRunning(context: Context, bgMode: BackgroundMode, wantAgent: WantAgent): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.backgroundTaskManager", + "classname": "backgroundTaskManager", + "methodname": "stopBackgroundRunning", + "methodname2": "function stopBackgroundRunning(context: Context, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.backgroundTaskManager", + "classname": "backgroundTaskManager", + "methodname": "stopBackgroundRunning", + "methodname2": "function stopBackgroundRunning(context: Context): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.backgroundTaskManager", + "classname": "BackgroundMode", + "methodname": "DATA_TRANSFER", + "methodname2": "DATA_TRANSFER = 1", + "api type": "Enum", + "path": "\\api\\@ohos.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.backgroundTaskManager", + "classname": "BackgroundMode", + "methodname": "AUDIO_PLAYBACK", + "methodname2": "AUDIO_PLAYBACK = 2", + "api type": "Enum", + "path": "\\api\\@ohos.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.backgroundTaskManager", + "classname": "BackgroundMode", + "methodname": "AUDIO_RECORDING", + "methodname2": "AUDIO_RECORDING = 3", + "api type": "Enum", + "path": "\\api\\@ohos.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.backgroundTaskManager", + "classname": "BackgroundMode", + "methodname": "LOCATION", + "methodname2": "LOCATION = 4", + "api type": "Enum", + "path": "\\api\\@ohos.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.backgroundTaskManager", + "classname": "BackgroundMode", + "methodname": "BLUETOOTH_INTERACTION", + "methodname2": "BLUETOOTH_INTERACTION = 5", + "api type": "Enum", + "path": "\\api\\@ohos.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.backgroundTaskManager", + "classname": "BackgroundMode", + "methodname": "MULTI_DEVICE_CONNECTION", + "methodname2": "MULTI_DEVICE_CONNECTION = 6", + "api type": "Enum", + "path": "\\api\\@ohos.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.backgroundTaskManager", + "classname": "BackgroundMode", + "methodname": "TASK_KEEPING", + "methodname2": "TASK_KEEPING = 9", + "api type": "Enum", + "path": "\\api\\@ohos.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "getState", + "methodname2": "function getState(): BluetoothState;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "getBtConnectionState", + "methodname2": "function getBtConnectionState(): ProfileConnectionState;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "pairDevice", + "methodname2": "function pairDevice(deviceId: string): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "getRemoteDeviceName", + "methodname2": "function getRemoteDeviceName(deviceId: string): string;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "getRemoteDeviceClass", + "methodname2": "function getRemoteDeviceClass(deviceId: string): DeviceClass;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "enableBluetooth", + "methodname2": "function enableBluetooth(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "disableBluetooth", + "methodname2": "function disableBluetooth(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "getLocalName", + "methodname2": "function getLocalName(): string;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "getPairedDevices", + "methodname2": "function getPairedDevices(): Array;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "getProfileConnState", + "methodname2": "function getProfileConnState(profileId: ProfileId): ProfileConnectionState;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "setDevicePairingConfirmation", + "methodname2": "function setDevicePairingConfirmation(device: string, accept: boolean): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "setLocalName", + "methodname2": "function setLocalName(name: string): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "setBluetoothScanMode", + "methodname2": "function setBluetoothScanMode(mode: ScanMode, duration: number): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "getBluetoothScanMode", + "methodname2": "function getBluetoothScanMode(): ScanMode;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "startBluetoothDiscovery", + "methodname2": "function startBluetoothDiscovery(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "stopBluetoothDiscovery", + "methodname2": "function stopBluetoothDiscovery(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "on_bluetoothDeviceFind", + "methodname2": "function on(type: \"bluetoothDeviceFind\", callback: Callback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "off_bluetoothDeviceFind", + "methodname2": "function off(type: \"bluetoothDeviceFind\", callback?: Callback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "on_bondStateChange", + "methodname2": "function on(type: \"bondStateChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "off_bondStateChange", + "methodname2": "function off(type: \"bondStateChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "on_pinRequired", + "methodname2": "function on(type: \"pinRequired\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "off_pinRequired", + "methodname2": "function off(type: \"pinRequired\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "on_stateChange", + "methodname2": "function on(type: \"stateChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "off_stateChange", + "methodname2": "function off(type: \"stateChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "sppListen", + "methodname2": "function sppListen(name: string, option: SppOption, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "sppAccept", + "methodname2": "function sppAccept(serverSocket: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "sppConnect", + "methodname2": "function sppConnect(device: string, option: SppOption, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "sppCloseServerSocket", + "methodname2": "function sppCloseServerSocket(socket: number): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "sppCloseClientSocket", + "methodname2": "function sppCloseClientSocket(socket: number): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "sppWrite", + "methodname2": "function sppWrite(clientSocket: number, data: ArrayBuffer): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "on_sppRead", + "methodname2": "function on(type: \"sppRead\", clientSocket: number, callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "off_sppRead", + "methodname2": "function off(type: \"sppRead\", clientSocket: number, callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "getProfile", + "methodname2": "function getProfile(profileId: ProfileId): A2dpSourceProfile | HandsFreeAudioGatewayProfile;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "bluetooth", + "methodname": "getProfileInst", + "methodname2": "function getProfileInst(profileId: ProfileId): A2dpSourceProfile | HandsFreeAudioGatewayProfile | HidHostProfile | PanProfile;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BaseProfile", + "methodname": "getConnectionDevices", + "methodname2": "getConnectionDevices(): Array;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BaseProfile", + "methodname": "getDeviceState", + "methodname2": "getDeviceState(device: string): ProfileConnectionState;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "A2dpSourceProfile", + "methodname": "connect", + "methodname2": "connect(device: string): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "A2dpSourceProfile", + "methodname": "disconnect", + "methodname2": "disconnect(device: string): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "A2dpSourceProfile", + "methodname": "on_connectionStateChange", + "methodname2": "on(type: \"connectionStateChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "A2dpSourceProfile", + "methodname": "off_connectionStateChange", + "methodname2": "off(type: \"connectionStateChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "A2dpSourceProfile", + "methodname": "getPlayingState", + "methodname2": "getPlayingState(device: string): PlayingState;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "HandsFreeAudioGatewayProfile", + "methodname": "connect", + "methodname2": "connect(device: string): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "HandsFreeAudioGatewayProfile", + "methodname": "disconnect", + "methodname2": "disconnect(device: string): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "HandsFreeAudioGatewayProfile", + "methodname": "on_connectionStateChange", + "methodname2": "on(type: \"connectionStateChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "HandsFreeAudioGatewayProfile", + "methodname": "off_connectionStateChange", + "methodname2": "off(type: \"connectionStateChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "HidHostProfile", + "methodname": "on_connectionStateChange", + "methodname2": "on(type: \"connectionStateChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "HidHostProfile", + "methodname": "off_connectionStateChange", + "methodname2": "off(type: \"connectionStateChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "PanProfile", + "methodname": "on_connectionStateChange", + "methodname2": "on(type: \"connectionStateChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "PanProfile", + "methodname": "off_connectionStateChange", + "methodname2": "off(type: \"connectionStateChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BLE", + "methodname": "createGattServer", + "methodname2": "function createGattServer(): GattServer;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BLE", + "methodname": "createGattClientDevice", + "methodname2": "function createGattClientDevice(deviceId: string): GattClientDevice;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BLE", + "methodname": "getConnectedBLEDevices", + "methodname2": "function getConnectedBLEDevices(): Array;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BLE", + "methodname": "startBLEScan", + "methodname2": "function startBLEScan(filters: Array, options?: ScanOptions): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BLE", + "methodname": "stopBLEScan", + "methodname2": "function stopBLEScan(): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BLE", + "methodname": "on_BLEDeviceFind", + "methodname2": "function on(type: \"BLEDeviceFind\", callback: Callback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BLE", + "methodname": "off_BLEDeviceFind", + "methodname2": "function off(type: \"BLEDeviceFind\", callback?: Callback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattServer", + "methodname": "startAdvertising", + "methodname2": "startAdvertising(setting: AdvertiseSetting, advData: AdvertiseData, advResponse?: AdvertiseData): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattServer", + "methodname": "stopAdvertising", + "methodname2": "stopAdvertising(): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattServer", + "methodname": "addService", + "methodname2": "addService(service: GattService): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattServer", + "methodname": "removeService", + "methodname2": "removeService(serviceUuid: string): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattServer", + "methodname": "close", + "methodname2": "close(): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattServer", + "methodname": "notifyCharacteristicChanged", + "methodname2": "notifyCharacteristicChanged(deviceId: string, notifyCharacteristic: NotifyCharacteristic): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattServer", + "methodname": "sendResponse", + "methodname2": "sendResponse(serverResponse: ServerResponse): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattServer", + "methodname": "on_characteristicRead", + "methodname2": "on(type: \"characteristicRead\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattServer", + "methodname": "off_characteristicRead", + "methodname2": "off(type: \"characteristicRead\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattServer", + "methodname": "on_characteristicWrite", + "methodname2": "on(type: \"characteristicWrite\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattServer", + "methodname": "off_characteristicWrite", + "methodname2": "off(type: \"characteristicWrite\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattServer", + "methodname": "on_descriptorRead", + "methodname2": "on(type: \"descriptorRead\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattServer", + "methodname": "off_descriptorRead", + "methodname2": "off(type: \"descriptorRead\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattServer", + "methodname": "on_descriptorWrite", + "methodname2": "on(type: \"descriptorWrite\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattServer", + "methodname": "off_descriptorWrite", + "methodname2": "off(type: \"descriptorWrite\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattServer", + "methodname": "on_connectStateChange", + "methodname2": "on(type: \"connectStateChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattServer", + "methodname": "off_connectStateChange", + "methodname2": "off(type: \"connectStateChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattClientDevice", + "methodname": "connect", + "methodname2": "connect(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattClientDevice", + "methodname": "disconnect", + "methodname2": "disconnect(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattClientDevice", + "methodname": "close", + "methodname2": "close(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattClientDevice", + "methodname": "getDeviceName", + "methodname2": "getDeviceName(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattClientDevice", + "methodname": "getDeviceName", + "methodname2": "getDeviceName(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattClientDevice", + "methodname": "getServices", + "methodname2": "getServices(callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattClientDevice", + "methodname": "getServices", + "methodname2": "getServices(): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattClientDevice", + "methodname": "readCharacteristicValue", + "methodname2": "readCharacteristicValue(characteristic: BLECharacteristic, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattClientDevice", + "methodname": "readCharacteristicValue", + "methodname2": "readCharacteristicValue(characteristic: BLECharacteristic): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattClientDevice", + "methodname": "readDescriptorValue", + "methodname2": "readDescriptorValue(descriptor: BLEDescriptor, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattClientDevice", + "methodname": "readDescriptorValue", + "methodname2": "readDescriptorValue(descriptor: BLEDescriptor): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattClientDevice", + "methodname": "writeCharacteristicValue", + "methodname2": "writeCharacteristicValue(characteristic: BLECharacteristic): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattClientDevice", + "methodname": "writeDescriptorValue", + "methodname2": "writeDescriptorValue(descriptor: BLEDescriptor): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattClientDevice", + "methodname": "getRssiValue", + "methodname2": "getRssiValue(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattClientDevice", + "methodname": "getRssiValue", + "methodname2": "getRssiValue(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattClientDevice", + "methodname": "setBLEMtuSize", + "methodname2": "setBLEMtuSize(mtu: number): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattClientDevice", + "methodname": "setNotifyCharacteristicChanged", + "methodname2": "setNotifyCharacteristicChanged(characteristic: BLECharacteristic, enable: boolean): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattClientDevice", + "methodname": "on_BLECharacteristicChange", + "methodname2": "on(type: \"BLECharacteristicChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattClientDevice", + "methodname": "off_BLECharacteristicChange", + "methodname2": "off(type: \"BLECharacteristicChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattClientDevice", + "methodname": "on_BLEConnectionStateChange", + "methodname2": "on(type: \"BLEConnectionStateChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattClientDevice", + "methodname": "off_BLEConnectionStateChange", + "methodname2": "off(type: \"BLEConnectionStateChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattService", + "methodname": "serviceUuid", + "methodname2": "serviceUuid: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattService", + "methodname": "isPrimary", + "methodname2": "isPrimary: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattService", + "methodname": "characteristics", + "methodname2": "characteristics: Array;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "GattService", + "methodname": "includeServices", + "methodname2": "includeServices?: Array;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BLECharacteristic", + "methodname": "serviceUuid", + "methodname2": "serviceUuid: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BLECharacteristic", + "methodname": "characteristicUuid", + "methodname2": "characteristicUuid: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BLECharacteristic", + "methodname": "characteristicValue", + "methodname2": "characteristicValue: ArrayBuffer;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BLECharacteristic", + "methodname": "descriptors", + "methodname2": "descriptors: Array;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BLEDescriptor", + "methodname": "serviceUuid", + "methodname2": "serviceUuid: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BLEDescriptor", + "methodname": "characteristicUuid", + "methodname2": "characteristicUuid: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BLEDescriptor", + "methodname": "descriptorUuid", + "methodname2": "descriptorUuid: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BLEDescriptor", + "methodname": "descriptorValue", + "methodname2": "descriptorValue: ArrayBuffer;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "NotifyCharacteristic", + "methodname": "serviceUuid", + "methodname2": "serviceUuid: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "NotifyCharacteristic", + "methodname": "characteristicUuid", + "methodname2": "characteristicUuid: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "NotifyCharacteristic", + "methodname": "characteristicValue", + "methodname2": "characteristicValue: ArrayBuffer;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "NotifyCharacteristic", + "methodname": "confirm", + "methodname2": "confirm: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "CharacteristicReadReq", + "methodname": "deviceId", + "methodname2": "deviceId: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "CharacteristicReadReq", + "methodname": "transId", + "methodname2": "transId: number;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "CharacteristicReadReq", + "methodname": "offset", + "methodname2": "offset: number;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "CharacteristicReadReq", + "methodname": "characteristicUuid", + "methodname2": "characteristicUuid: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "CharacteristicReadReq", + "methodname": "serviceUuid", + "methodname2": "serviceUuid: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "CharacteristicWriteReq", + "methodname": "deviceId", + "methodname2": "deviceId: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "CharacteristicWriteReq", + "methodname": "transId", + "methodname2": "transId: number;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "CharacteristicWriteReq", + "methodname": "offset", + "methodname2": "offset: number;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "CharacteristicWriteReq", + "methodname": "isPrep", + "methodname2": "isPrep: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "CharacteristicWriteReq", + "methodname": "needRsp", + "methodname2": "needRsp: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "CharacteristicWriteReq", + "methodname": "value", + "methodname2": "value: ArrayBuffer;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "CharacteristicWriteReq", + "methodname": "characteristicUuid", + "methodname2": "characteristicUuid: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "CharacteristicWriteReq", + "methodname": "serviceUuid", + "methodname2": "serviceUuid: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "DescriptorReadReq", + "methodname": "deviceId", + "methodname2": "deviceId: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "DescriptorReadReq", + "methodname": "transId", + "methodname2": "transId: number;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "DescriptorReadReq", + "methodname": "offset", + "methodname2": "offset: number;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "DescriptorReadReq", + "methodname": "descriptorUuid", + "methodname2": "descriptorUuid: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "DescriptorReadReq", + "methodname": "characteristicUuid", + "methodname2": "characteristicUuid: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "DescriptorReadReq", + "methodname": "serviceUuid", + "methodname2": "serviceUuid: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "DescriptorWriteReq", + "methodname": "deviceId", + "methodname2": "deviceId: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "DescriptorWriteReq", + "methodname": "transId", + "methodname2": "transId: number;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "DescriptorWriteReq", + "methodname": "offset", + "methodname2": "offset: number;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "DescriptorWriteReq", + "methodname": "isPrep", + "methodname2": "isPrep: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "DescriptorWriteReq", + "methodname": "needRsp", + "methodname2": "needRsp: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "DescriptorWriteReq", + "methodname": "value", + "methodname2": "value: ArrayBuffer;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "DescriptorWriteReq", + "methodname": "descriptorUuid", + "methodname2": "descriptorUuid: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "DescriptorWriteReq", + "methodname": "characteristicUuid", + "methodname2": "characteristicUuid: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "DescriptorWriteReq", + "methodname": "serviceUuid", + "methodname2": "serviceUuid: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ServerResponse", + "methodname": "deviceId", + "methodname2": "deviceId: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ServerResponse", + "methodname": "transId", + "methodname2": "transId: number;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ServerResponse", + "methodname": "status", + "methodname2": "status: number;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ServerResponse", + "methodname": "offset", + "methodname2": "offset: number;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ServerResponse", + "methodname": "value", + "methodname2": "value: ArrayBuffer;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BLEConnectChangedState", + "methodname": "deviceId", + "methodname2": "deviceId: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BLEConnectChangedState", + "methodname": "state", + "methodname2": "state: ProfileConnectionState;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanResult", + "methodname": "deviceId", + "methodname2": "deviceId: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanResult", + "methodname": "rssi", + "methodname2": "rssi: number;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanResult", + "methodname": "data", + "methodname2": "data: ArrayBuffer;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "AdvertiseSetting", + "methodname": "interval", + "methodname2": "interval?: number;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "AdvertiseSetting", + "methodname": "txPower", + "methodname2": "txPower?: number;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "AdvertiseSetting", + "methodname": "connectable", + "methodname2": "connectable?: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "AdvertiseData", + "methodname": "serviceUuids", + "methodname2": "serviceUuids: Array;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "AdvertiseData", + "methodname": "manufactureData", + "methodname2": "manufactureData: Array;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "AdvertiseData", + "methodname": "serviceData", + "methodname2": "serviceData: Array;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ManufactureData", + "methodname": "manufactureId", + "methodname2": "manufactureId: number;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ManufactureData", + "methodname": "manufactureValue", + "methodname2": "manufactureValue: ArrayBuffer;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ServiceData", + "methodname": "serviceUuid", + "methodname2": "serviceUuid: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ServiceData", + "methodname": "serviceValue", + "methodname2": "serviceValue: ArrayBuffer;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanFilter", + "methodname": "deviceId", + "methodname2": "deviceId?: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanFilter", + "methodname": "name", + "methodname2": "name?: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanFilter", + "methodname": "serviceUuid", + "methodname2": "serviceUuid?: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanFilter", + "methodname": "serviceUuidMask", + "methodname2": "serviceUuidMask?: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanFilter", + "methodname": "serviceSolicitationUuid", + "methodname2": "serviceSolicitationUuid?: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanFilter", + "methodname": "serviceSolicitationUuidMask", + "methodname2": "serviceSolicitationUuidMask?: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanFilter", + "methodname": "serviceData", + "methodname2": "serviceData?: ArrayBuffer;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanFilter", + "methodname": "serviceDataMask", + "methodname2": "serviceDataMask?: ArrayBuffer;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanFilter", + "methodname": "manufactureId", + "methodname2": "manufactureId?: number;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanFilter", + "methodname": "manufactureData", + "methodname2": "manufactureData?: ArrayBuffer;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanFilter", + "methodname": "manufactureDataMask", + "methodname2": "manufactureDataMask?: ArrayBuffer;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanOptions", + "methodname": "interval", + "methodname2": "interval?: number;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanOptions", + "methodname": "dutyMode", + "methodname2": "dutyMode?: ScanDuty;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanOptions", + "methodname": "matchMode", + "methodname2": "matchMode?: MatchMode;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "SppOption", + "methodname": "uuid", + "methodname2": "uuid: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "SppOption", + "methodname": "secure", + "methodname2": "secure: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "SppOption", + "methodname": "type", + "methodname2": "type: SppType;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "PinRequiredParam", + "methodname": "deviceId", + "methodname2": "deviceId: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "PinRequiredParam", + "methodname": "pinCode", + "methodname2": "pinCode: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "DeviceClass", + "methodname": "majorClass", + "methodname2": "majorClass: MajorClass;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "DeviceClass", + "methodname": "majorMinorClass", + "methodname2": "majorMinorClass: MajorMinorClass;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "DeviceClass", + "methodname": "classOfDevice", + "methodname2": "classOfDevice: number;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BondStateParam", + "methodname": "deviceId", + "methodname2": "deviceId: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BondStateParam", + "methodname": "state", + "methodname2": "state: BondState;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanDuty", + "methodname": "SCAN_MODE_LOW_POWER", + "methodname2": "SCAN_MODE_LOW_POWER = 0", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanDuty", + "methodname": "SCAN_MODE_BALANCED", + "methodname2": "SCAN_MODE_BALANCED = 1", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanDuty", + "methodname": "SCAN_MODE_LOW_LATENCY", + "methodname2": "SCAN_MODE_LOW_LATENCY = 2", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MatchMode", + "methodname": "MATCH_MODE_AGGRESSIVE", + "methodname2": "MATCH_MODE_AGGRESSIVE = 1", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MatchMode", + "methodname": "MATCH_MODE_STICKY", + "methodname2": "MATCH_MODE_STICKY = 2", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ProfileConnectionState", + "methodname": "STATE_DISCONNECTED", + "methodname2": "STATE_DISCONNECTED = 0", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ProfileConnectionState", + "methodname": "STATE_CONNECTING", + "methodname2": "STATE_CONNECTING = 1", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ProfileConnectionState", + "methodname": "STATE_CONNECTED", + "methodname2": "STATE_CONNECTED = 2", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ProfileConnectionState", + "methodname": "STATE_DISCONNECTING", + "methodname2": "STATE_DISCONNECTING = 3", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BluetoothState", + "methodname": "STATE_OFF", + "methodname2": "STATE_OFF = 0", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BluetoothState", + "methodname": "STATE_TURNING_ON", + "methodname2": "STATE_TURNING_ON = 1", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BluetoothState", + "methodname": "STATE_ON", + "methodname2": "STATE_ON = 2", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BluetoothState", + "methodname": "STATE_TURNING_OFF", + "methodname2": "STATE_TURNING_OFF = 3", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BluetoothState", + "methodname": "STATE_BLE_TURNING_ON", + "methodname2": "STATE_BLE_TURNING_ON = 4", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BluetoothState", + "methodname": "STATE_BLE_ON", + "methodname2": "STATE_BLE_ON = 5", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BluetoothState", + "methodname": "STATE_BLE_TURNING_OFF", + "methodname2": "STATE_BLE_TURNING_OFF = 6", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "SppType", + "methodname": "SPP_RFCOMM", + "methodname2": "SPP_RFCOMM", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanMode", + "methodname": "SCAN_MODE_NONE", + "methodname2": "SCAN_MODE_NONE = 0", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanMode", + "methodname": "SCAN_MODE_CONNECTABLE", + "methodname2": "SCAN_MODE_CONNECTABLE = 1", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanMode", + "methodname": "SCAN_MODE_GENERAL_DISCOVERABLE", + "methodname2": "SCAN_MODE_GENERAL_DISCOVERABLE = 2", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanMode", + "methodname": "SCAN_MODE_LIMITED_DISCOVERABLE", + "methodname2": "SCAN_MODE_LIMITED_DISCOVERABLE = 3", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanMode", + "methodname": "SCAN_MODE_CONNECTABLE_GENERAL_DISCOVERABLE", + "methodname2": "SCAN_MODE_CONNECTABLE_GENERAL_DISCOVERABLE = 4", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ScanMode", + "methodname": "SCAN_MODE_CONNECTABLE_LIMITED_DISCOVERABLE", + "methodname2": "SCAN_MODE_CONNECTABLE_LIMITED_DISCOVERABLE = 5", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BondState", + "methodname": "BOND_STATE_INVALID", + "methodname2": "BOND_STATE_INVALID = 0", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BondState", + "methodname": "BOND_STATE_BONDING", + "methodname2": "BOND_STATE_BONDING = 1", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "BondState", + "methodname": "BOND_STATE_BONDED", + "methodname2": "BOND_STATE_BONDED = 2", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorClass", + "methodname": "MAJOR_MISC", + "methodname2": "MAJOR_MISC = 0x0000", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorClass", + "methodname": "MAJOR_COMPUTER", + "methodname2": "MAJOR_COMPUTER = 0x0100", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorClass", + "methodname": "MAJOR_PHONE", + "methodname2": "MAJOR_PHONE = 0x0200", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorClass", + "methodname": "MAJOR_NETWORKING", + "methodname2": "MAJOR_NETWORKING = 0x0300", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorClass", + "methodname": "MAJOR_AUDIO_VIDEO", + "methodname2": "MAJOR_AUDIO_VIDEO = 0x0400", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorClass", + "methodname": "MAJOR_PERIPHERAL", + "methodname2": "MAJOR_PERIPHERAL = 0x0500", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorClass", + "methodname": "MAJOR_IMAGING", + "methodname2": "MAJOR_IMAGING = 0x0600", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorClass", + "methodname": "MAJOR_WEARABLE", + "methodname2": "MAJOR_WEARABLE = 0x0700", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorClass", + "methodname": "MAJOR_TOY", + "methodname2": "MAJOR_TOY = 0x0800", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorClass", + "methodname": "MAJOR_HEALTH", + "methodname2": "MAJOR_HEALTH = 0x0900", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorClass", + "methodname": "MAJOR_UNCATEGORIZED", + "methodname2": "MAJOR_UNCATEGORIZED = 0x1F00", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "COMPUTER_UNCATEGORIZED", + "methodname2": "COMPUTER_UNCATEGORIZED = 0x0100", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "COMPUTER_DESKTOP", + "methodname2": "COMPUTER_DESKTOP = 0x0104", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "COMPUTER_SERVER", + "methodname2": "COMPUTER_SERVER = 0x0108", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "COMPUTER_LAPTOP", + "methodname2": "COMPUTER_LAPTOP = 0x010C", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "COMPUTER_HANDHELD_PC_PDA", + "methodname2": "COMPUTER_HANDHELD_PC_PDA = 0x0110", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "COMPUTER_PALM_SIZE_PC_PDA", + "methodname2": "COMPUTER_PALM_SIZE_PC_PDA = 0x0114", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "COMPUTER_WEARABLE", + "methodname2": "COMPUTER_WEARABLE = 0x0118", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "COMPUTER_TABLET", + "methodname2": "COMPUTER_TABLET = 0x011C", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "PHONE_UNCATEGORIZED", + "methodname2": "PHONE_UNCATEGORIZED = 0x0200", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "PHONE_CELLULAR", + "methodname2": "PHONE_CELLULAR = 0x0204", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "PHONE_CORDLESS", + "methodname2": "PHONE_CORDLESS = 0x0208", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "PHONE_SMART", + "methodname2": "PHONE_SMART = 0x020C", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "PHONE_MODEM_OR_GATEWAY", + "methodname2": "PHONE_MODEM_OR_GATEWAY = 0x0210", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "PHONE_ISDN", + "methodname2": "PHONE_ISDN = 0x0214", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "NETWORK_FULLY_AVAILABLE", + "methodname2": "NETWORK_FULLY_AVAILABLE = 0x0300", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "NETWORK_1_TO_17_UTILIZED", + "methodname2": "NETWORK_1_TO_17_UTILIZED = 0x0320", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "NETWORK_17_TO_33_UTILIZED", + "methodname2": "NETWORK_17_TO_33_UTILIZED = 0x0340", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "NETWORK_33_TO_50_UTILIZED", + "methodname2": "NETWORK_33_TO_50_UTILIZED = 0x0360", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "NETWORK_60_TO_67_UTILIZED", + "methodname2": "NETWORK_60_TO_67_UTILIZED = 0x0380", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "NETWORK_67_TO_83_UTILIZED", + "methodname2": "NETWORK_67_TO_83_UTILIZED = 0x03A0", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "NETWORK_83_TO_99_UTILIZED", + "methodname2": "NETWORK_83_TO_99_UTILIZED = 0x03C0", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "NETWORK_NO_SERVICE", + "methodname2": "NETWORK_NO_SERVICE = 0x03E0", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "AUDIO_VIDEO_UNCATEGORIZED", + "methodname2": "AUDIO_VIDEO_UNCATEGORIZED = 0x0400", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "AUDIO_VIDEO_WEARABLE_HEADSET", + "methodname2": "AUDIO_VIDEO_WEARABLE_HEADSET = 0x0404", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "AUDIO_VIDEO_HANDSFREE", + "methodname2": "AUDIO_VIDEO_HANDSFREE = 0x0408", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "AUDIO_VIDEO_MICROPHONE", + "methodname2": "AUDIO_VIDEO_MICROPHONE = 0x0410", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "AUDIO_VIDEO_LOUDSPEAKER", + "methodname2": "AUDIO_VIDEO_LOUDSPEAKER = 0x0414", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "AUDIO_VIDEO_HEADPHONES", + "methodname2": "AUDIO_VIDEO_HEADPHONES = 0x0418", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "AUDIO_VIDEO_PORTABLE_AUDIO", + "methodname2": "AUDIO_VIDEO_PORTABLE_AUDIO = 0x041C", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "AUDIO_VIDEO_CAR_AUDIO", + "methodname2": "AUDIO_VIDEO_CAR_AUDIO = 0x0420", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "AUDIO_VIDEO_SET_TOP_BOX", + "methodname2": "AUDIO_VIDEO_SET_TOP_BOX = 0x0424", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "AUDIO_VIDEO_HIFI_AUDIO", + "methodname2": "AUDIO_VIDEO_HIFI_AUDIO = 0x0428", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "AUDIO_VIDEO_VCR", + "methodname2": "AUDIO_VIDEO_VCR = 0x042C", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "AUDIO_VIDEO_VIDEO_CAMERA", + "methodname2": "AUDIO_VIDEO_VIDEO_CAMERA = 0x0430", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "AUDIO_VIDEO_CAMCORDER", + "methodname2": "AUDIO_VIDEO_CAMCORDER = 0x0434", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "AUDIO_VIDEO_VIDEO_MONITOR", + "methodname2": "AUDIO_VIDEO_VIDEO_MONITOR = 0x0438", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "AUDIO_VIDEO_VIDEO_DISPLAY_AND_LOUDSPEAKER", + "methodname2": "AUDIO_VIDEO_VIDEO_DISPLAY_AND_LOUDSPEAKER = 0x043C", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "AUDIO_VIDEO_VIDEO_CONFERENCING", + "methodname2": "AUDIO_VIDEO_VIDEO_CONFERENCING = 0x0440", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "AUDIO_VIDEO_VIDEO_GAMING_TOY", + "methodname2": "AUDIO_VIDEO_VIDEO_GAMING_TOY = 0x0448", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "PERIPHERAL_NON_KEYBOARD_NON_POINTING", + "methodname2": "PERIPHERAL_NON_KEYBOARD_NON_POINTING = 0x0500", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "PERIPHERAL_KEYBOARD", + "methodname2": "PERIPHERAL_KEYBOARD = 0x0540", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "PERIPHERAL_POINTING_DEVICE", + "methodname2": "PERIPHERAL_POINTING_DEVICE = 0x0580", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "PERIPHERAL_KEYBOARD_POINTING", + "methodname2": "PERIPHERAL_KEYBOARD_POINTING = 0x05C0", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "PERIPHERAL_UNCATEGORIZED", + "methodname2": "PERIPHERAL_UNCATEGORIZED = 0x0500", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "PERIPHERAL_JOYSTICK", + "methodname2": "PERIPHERAL_JOYSTICK = 0x0504", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "PERIPHERAL_GAMEPAD", + "methodname2": "PERIPHERAL_GAMEPAD = 0x0508", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "PERIPHERAL_REMOTE_CONTROL", + "methodname2": "PERIPHERAL_REMOTE_CONTROL = 0x05C0", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "PERIPHERAL_SENSING_DEVICE", + "methodname2": "PERIPHERAL_SENSING_DEVICE = 0x0510", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "PERIPHERAL_DIGITIZER_TABLET", + "methodname2": "PERIPHERAL_DIGITIZER_TABLET = 0x0514", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "PERIPHERAL_CARD_READER", + "methodname2": "PERIPHERAL_CARD_READER = 0x0518", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "PERIPHERAL_DIGITAL_PEN", + "methodname2": "PERIPHERAL_DIGITAL_PEN = 0x051C", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "PERIPHERAL_SCANNER_RFID", + "methodname2": "PERIPHERAL_SCANNER_RFID = 0x0520", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "PERIPHERAL_GESTURAL_INPUT", + "methodname2": "PERIPHERAL_GESTURAL_INPUT = 0x0522", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "IMAGING_UNCATEGORIZED", + "methodname2": "IMAGING_UNCATEGORIZED = 0x0600", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "IMAGING_DISPLAY", + "methodname2": "IMAGING_DISPLAY = 0x0610", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "IMAGING_CAMERA", + "methodname2": "IMAGING_CAMERA = 0x0620", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "IMAGING_SCANNER", + "methodname2": "IMAGING_SCANNER = 0x0640", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "IMAGING_PRINTER", + "methodname2": "IMAGING_PRINTER = 0x0680", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "WEARABLE_UNCATEGORIZED", + "methodname2": "WEARABLE_UNCATEGORIZED = 0x0700", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "WEARABLE_WRIST_WATCH", + "methodname2": "WEARABLE_WRIST_WATCH = 0x0704", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "WEARABLE_PAGER", + "methodname2": "WEARABLE_PAGER = 0x0708", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "WEARABLE_JACKET", + "methodname2": "WEARABLE_JACKET = 0x070C", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "WEARABLE_HELMET", + "methodname2": "WEARABLE_HELMET = 0x0710", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "WEARABLE_GLASSES", + "methodname2": "WEARABLE_GLASSES = 0x0714", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "TOY_UNCATEGORIZED", + "methodname2": "TOY_UNCATEGORIZED = 0x0800", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "TOY_ROBOT", + "methodname2": "TOY_ROBOT = 0x0804", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "TOY_VEHICLE", + "methodname2": "TOY_VEHICLE = 0x0808", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "TOY_DOLL_ACTION_FIGURE", + "methodname2": "TOY_DOLL_ACTION_FIGURE = 0x080C", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "TOY_CONTROLLER", + "methodname2": "TOY_CONTROLLER = 0x0810", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "TOY_GAME", + "methodname2": "TOY_GAME = 0x0814", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "HEALTH_UNCATEGORIZED", + "methodname2": "HEALTH_UNCATEGORIZED = 0x0900", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "HEALTH_BLOOD_PRESSURE", + "methodname2": "HEALTH_BLOOD_PRESSURE = 0x0904", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "HEALTH_THERMOMETER", + "methodname2": "HEALTH_THERMOMETER = 0x0908", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "HEALTH_WEIGHING", + "methodname2": "HEALTH_WEIGHING = 0x090C", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "HEALTH_GLUCOSE", + "methodname2": "HEALTH_GLUCOSE = 0x0910", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "HEALTH_PULSE_OXIMETER", + "methodname2": "HEALTH_PULSE_OXIMETER = 0x0914", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "HEALTH_PULSE_RATE", + "methodname2": "HEALTH_PULSE_RATE = 0x0918", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "HEALTH_DATA_DISPLAY", + "methodname2": "HEALTH_DATA_DISPLAY = 0x091C", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "HEALTH_STEP_COUNTER", + "methodname2": "HEALTH_STEP_COUNTER = 0x0920", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "HEALTH_BODY_COMPOSITION_ANALYZER", + "methodname2": "HEALTH_BODY_COMPOSITION_ANALYZER = 0x0924", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "HEALTH_PEAK_FLOW_MOITOR", + "methodname2": "HEALTH_PEAK_FLOW_MOITOR = 0x0928", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "HEALTH_MEDICATION_MONITOR", + "methodname2": "HEALTH_MEDICATION_MONITOR = 0x092C", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "HEALTH_KNEE_PROSTHESIS", + "methodname2": "HEALTH_KNEE_PROSTHESIS = 0x0930", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "HEALTH_ANKLE_PROSTHESIS", + "methodname2": "HEALTH_ANKLE_PROSTHESIS = 0x0934", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "HEALTH_GENERIC_HEALTH_MANAGER", + "methodname2": "HEALTH_GENERIC_HEALTH_MANAGER = 0x0938", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "MajorMinorClass", + "methodname": "HEALTH_PERSONAL_MOBILITY_DEVICE", + "methodname2": "HEALTH_PERSONAL_MOBILITY_DEVICE = 0x093C", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "StateChangeParam", + "methodname": "deviceId", + "methodname2": "deviceId: string;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "StateChangeParam", + "methodname": "state", + "methodname2": "state: ProfileConnectionState;", + "api type": "Field", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "PlayingState", + "methodname": "STATE_NOT_PLAYING", + "methodname2": "STATE_NOT_PLAYING", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "PlayingState", + "methodname": "STATE_PLAYING", + "methodname2": "STATE_PLAYING", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ProfileId", + "methodname": "PROFILE_A2DP_SOURCE", + "methodname2": "PROFILE_A2DP_SOURCE = 1", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ProfileId", + "methodname": "PROFILE_HANDS_FREE_AUDIO_GATEWAY", + "methodname2": "PROFILE_HANDS_FREE_AUDIO_GATEWAY = 4", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ProfileId", + "methodname": "PROFILE_HID_HOST", + "methodname2": "PROFILE_HID_HOST = 6", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bluetooth", + "classname": "ProfileId", + "methodname": "PROFILE_PAN_NETWORK", + "methodname2": "PROFILE_PAN_NETWORK = 7", + "api type": "Enum", + "path": "\\api\\@ohos.bluetooth.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "BundleStateInfo", + "methodname": "id", + "methodname2": "id: number;", + "api type": "Field", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "BundleStateInfo", + "methodname": "abilityInFgTotalTime", + "methodname2": "abilityInFgTotalTime?: number;", + "api type": "Field", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "BundleStateInfo", + "methodname": "abilityPrevAccessTime", + "methodname2": "abilityPrevAccessTime?: number;", + "api type": "Field", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "BundleStateInfo", + "methodname": "abilityPrevSeenTime", + "methodname2": "abilityPrevSeenTime?: number;", + "api type": "Field", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "BundleStateInfo", + "methodname": "abilitySeenTotalTime", + "methodname2": "abilitySeenTotalTime?: number;", + "api type": "Field", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "BundleStateInfo", + "methodname": "bundleName", + "methodname2": "bundleName?: string;", + "api type": "Field", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "BundleStateInfo", + "methodname": "fgAbilityAccessTotalTime", + "methodname2": "fgAbilityAccessTotalTime?: number;", + "api type": "Field", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "BundleStateInfo", + "methodname": "fgAbilityPrevAccessTime", + "methodname2": "fgAbilityPrevAccessTime?: number;", + "api type": "Field", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "BundleStateInfo", + "methodname": "infosBeginTime", + "methodname2": "infosBeginTime?: number;", + "api type": "Field", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "BundleStateInfo", + "methodname": "infosEndTime", + "methodname2": "infosEndTime?: number;", + "api type": "Field", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "BundleStateInfo", + "methodname": "merge", + "methodname2": "merge(toMerge: BundleStateInfo): void;", + "api type": "Method", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "BundleActiveState", + "methodname": "appUsagePriorityGroup", + "methodname2": "appUsagePriorityGroup?: number;", + "api type": "Field", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "BundleActiveState", + "methodname": "bundleName", + "methodname2": "bundleName?: string;", + "api type": "Field", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "BundleActiveState", + "methodname": "indexOfLink", + "methodname2": "indexOfLink?: string;", + "api type": "Field", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "BundleActiveState", + "methodname": "nameOfClass", + "methodname2": "nameOfClass?: string;", + "api type": "Field", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "BundleActiveState", + "methodname": "stateOccurredTime", + "methodname2": "stateOccurredTime?: number;", + "api type": "Field", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "BundleActiveState", + "methodname": "stateType", + "methodname2": "stateType?: number;", + "api type": "Field", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "bundleState", + "methodname": "isIdleState", + "methodname2": "function isIdleState(bundleName: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "bundleState", + "methodname": "isIdleState", + "methodname2": "function isIdleState(bundleName: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "bundleState", + "methodname": "queryAppUsagePriorityGroup", + "methodname2": "function queryAppUsagePriorityGroup(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "bundleState", + "methodname": "queryAppUsagePriorityGroup", + "methodname2": "function queryAppUsagePriorityGroup(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "BundleActiveInfoResponse", + "methodname": "BundleActiveInfoResponse", + "methodname2": "[key: string]: BundleStateInfo;", + "api type": "Method", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "IntervalType", + "methodname": "BY_OPTIMIZED", + "methodname2": "BY_OPTIMIZED = 0", + "api type": "Enum", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "IntervalType", + "methodname": "BY_DAILY", + "methodname2": "BY_DAILY = 1", + "api type": "Enum", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "IntervalType", + "methodname": "BY_WEEKLY", + "methodname2": "BY_WEEKLY = 2", + "api type": "Enum", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "IntervalType", + "methodname": "BY_MONTHLY", + "methodname2": "BY_MONTHLY = 3", + "api type": "Enum", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "IntervalType", + "methodname": "BY_ANNUALLY", + "methodname2": "BY_ANNUALLY = 4", + "api type": "Enum", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "bundleState", + "methodname": "queryCurrentBundleActiveStates", + "methodname2": "function queryCurrentBundleActiveStates(begin: number, end: number, callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.bundleState", + "classname": "bundleState", + "methodname": "queryCurrentBundleActiveStates", + "methodname2": "function queryCurrentBundleActiveStates(begin: number, end: number): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.bundleState.d.ts" + }, + { + "module name": "ohos.connectedTag", + "classname": "connectedTag", + "methodname": "init", + "methodname2": "function init(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.connectedTag.d.ts" + }, + { + "module name": "ohos.connectedTag", + "classname": "connectedTag", + "methodname": "uninit", + "methodname2": "function uninit(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.connectedTag.d.ts" + }, + { + "module name": "ohos.connectedTag", + "classname": "connectedTag", + "methodname": "readNdefTag", + "methodname2": "function readNdefTag(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.connectedTag.d.ts" + }, + { + "module name": "ohos.connectedTag", + "classname": "connectedTag", + "methodname": "readNdefTag", + "methodname2": "function readNdefTag(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.connectedTag.d.ts" + }, + { + "module name": "ohos.connectedTag", + "classname": "connectedTag", + "methodname": "writeNdefTag", + "methodname2": "function writeNdefTag(data: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.connectedTag.d.ts" + }, + { + "module name": "ohos.connectedTag", + "classname": "connectedTag", + "methodname": "writeNdefTag", + "methodname2": "function writeNdefTag(data: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.connectedTag.d.ts" + }, + { + "module name": "ohos.connectedTag", + "classname": "connectedTag", + "methodname": "on_notify", + "methodname2": "function on(type: \"notify\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.connectedTag.d.ts" + }, + { + "module name": "ohos.connectedTag", + "classname": "connectedTag", + "methodname": "off_notify", + "methodname2": "function off(type: \"notify\", callback?:Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.connectedTag.d.ts" + }, + { + "module name": "ohos.connectedTag", + "classname": "NfcRfType", + "methodname": "NFC_RF_LEAVE", + "methodname2": "NFC_RF_LEAVE = 0", + "api type": "Enum", + "path": "\\api\\@ohos.connectedTag.d.ts" + }, + { + "module name": "ohos.connectedTag", + "classname": "NfcRfType", + "methodname": "NFC_RF_ENTER", + "methodname2": "NFC_RF_ENTER = 1", + "api type": "Enum", + "path": "\\api\\@ohos.connectedTag.d.ts" + }, + { + "module name": "ohos.continuation.continuationManager", + "classname": "continuationManager", + "methodname": "on_deviceConnect", + "methodname2": "function on(type: \"deviceConnect\", token: number, callback: Callback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.continuation.continuationManager.d.ts" + }, + { + "module name": "ohos.continuation.continuationManager", + "classname": "continuationManager", + "methodname": "on_deviceDisconnect", + "methodname2": "function on(type: \"deviceDisconnect\", token: number, callback: Callback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.continuation.continuationManager.d.ts" + }, + { + "module name": "ohos.continuation.continuationManager", + "classname": "continuationManager", + "methodname": "registerContinuation", + "methodname2": "function registerContinuation(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.continuation.continuationManager.d.ts" + }, + { + "module name": "ohos.continuation.continuationManager", + "classname": "continuationManager", + "methodname": "registerContinuation", + "methodname2": "function registerContinuation(options: ContinuationExtraParams, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.continuation.continuationManager.d.ts" + }, + { + "module name": "ohos.continuation.continuationManager", + "classname": "continuationManager", + "methodname": "registerContinuation", + "methodname2": "function registerContinuation(options?: ContinuationExtraParams): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.continuation.continuationManager.d.ts" + }, + { + "module name": "ohos.continuation.continuationManager", + "classname": "continuationManager", + "methodname": "unregisterContinuation", + "methodname2": "function unregisterContinuation(token: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.continuation.continuationManager.d.ts" + }, + { + "module name": "ohos.continuation.continuationManager", + "classname": "continuationManager", + "methodname": "unregisterContinuation", + "methodname2": "function unregisterContinuation(token: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.continuation.continuationManager.d.ts" + }, + { + "module name": "ohos.continuation.continuationManager", + "classname": "continuationManager", + "methodname": "updateContinuationState", + "methodname2": "function updateContinuationState(token: number, deviceId: string, status: DeviceConnectState, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.continuation.continuationManager.d.ts" + }, + { + "module name": "ohos.continuation.continuationManager", + "classname": "continuationManager", + "methodname": "updateContinuationState", + "methodname2": "function updateContinuationState(token: number, deviceId: string, status: DeviceConnectState): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.continuation.continuationManager.d.ts" + }, + { + "module name": "ohos.continuation.continuationManager", + "classname": "continuationManager", + "methodname": "startContinuationDeviceManager", + "methodname2": "function startContinuationDeviceManager(token: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.continuation.continuationManager.d.ts" + }, + { + "module name": "ohos.continuation.continuationManager", + "classname": "continuationManager", + "methodname": "startContinuationDeviceManager", + "methodname2": "function startContinuationDeviceManager(token: number, options: ContinuationExtraParams, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.continuation.continuationManager.d.ts" + }, + { + "module name": "ohos.continuation.continuationManager", + "classname": "continuationManager", + "methodname": "startContinuationDeviceManager", + "methodname2": "function startContinuationDeviceManager(token: number, options?: ContinuationExtraParams): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.continuation.continuationManager.d.ts" + }, + { + "module name": "ohos.data.distributedDataObject", + "classname": "distributedDataObject", + "methodname": "create", + "methodname2": "function create(context: Context, source: object): DistributedObjectV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedDataObject.d.ts" + }, + { + "module name": "ohos.data.distributedDataObject", + "classname": "SaveSuccessResponse", + "methodname": "sessionId", + "methodname2": "sessionId: string;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedDataObject.d.ts" + }, + { + "module name": "ohos.data.distributedDataObject", + "classname": "SaveSuccessResponse", + "methodname": "version", + "methodname2": "version: number;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedDataObject.d.ts" + }, + { + "module name": "ohos.data.distributedDataObject", + "classname": "SaveSuccessResponse", + "methodname": "deviceId", + "methodname2": "deviceId: string;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedDataObject.d.ts" + }, + { + "module name": "ohos.data.distributedDataObject", + "classname": "RevokeSaveSuccessResponse", + "methodname": "sessionId", + "methodname2": "sessionId: string;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedDataObject.d.ts" + }, + { + "module name": "ohos.data.distributedDataObject", + "classname": "DistributedObjectV9", + "methodname": "setSessionId", + "methodname2": "setSessionId(sessionId: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedDataObject.d.ts" + }, + { + "module name": "ohos.data.distributedDataObject", + "classname": "DistributedObjectV9", + "methodname": "setSessionId", + "methodname2": "setSessionId(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedDataObject.d.ts" + }, + { + "module name": "ohos.data.distributedDataObject", + "classname": "DistributedObjectV9", + "methodname": "setSessionId", + "methodname2": "setSessionId(sessionId?: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedDataObject.d.ts" + }, + { + "module name": "ohos.data.distributedDataObject", + "classname": "DistributedObjectV9", + "methodname": "on_change", + "methodname2": "on(type: 'change', callback: Callback<{ sessionId: string, fields: Array }>): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedDataObject.d.ts" + }, + { + "module name": "ohos.data.distributedDataObject", + "classname": "DistributedObjectV9", + "methodname": "off_change", + "methodname2": "off(type: 'change', callback?: Callback<{ sessionId: string, fields: Array }>): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedDataObject.d.ts" + }, + { + "module name": "ohos.data.distributedDataObject", + "classname": "DistributedObjectV9", + "methodname": "on_status", + "methodname2": "on(type: 'status',\n callback: Callback<{ sessionId: string, networkId: string, status: 'online' | 'offline' }>): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedDataObject.d.ts" + }, + { + "module name": "ohos.data.distributedDataObject", + "classname": "DistributedObjectV9", + "methodname": "off_status", + "methodname2": "off(type: 'status',\n callback?: Callback<{ sessionId: string, deviceId: string, status: 'online' | 'offline' }>): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedDataObject.d.ts" + }, + { + "module name": "ohos.data.distributedDataObject", + "classname": "DistributedObjectV9", + "methodname": "save", + "methodname2": "save(deviceId: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedDataObject.d.ts" + }, + { + "module name": "ohos.data.distributedDataObject", + "classname": "DistributedObjectV9", + "methodname": "save", + "methodname2": "save(deviceId: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedDataObject.d.ts" + }, + { + "module name": "ohos.data.distributedDataObject", + "classname": "DistributedObjectV9", + "methodname": "revokeSave", + "methodname2": "revokeSave(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedDataObject.d.ts" + }, + { + "module name": "ohos.data.distributedDataObject", + "classname": "DistributedObjectV9", + "methodname": "revokeSave", + "methodname2": "revokeSave(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedDataObject.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVManagerConfig", + "methodname": "bundleName", + "methodname2": "bundleName: string;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVManagerConfig", + "methodname": "context", + "methodname2": "context: Context;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Constants", + "methodname": "MAX_KEY_LENGTH", + "methodname2": "const MAX_KEY_LENGTH = 1024;", + "api type": "Constant", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Constants", + "methodname": "MAX_VALUE_LENGTH", + "methodname2": "const MAX_VALUE_LENGTH = 4194303;", + "api type": "Constant", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Constants", + "methodname": "MAX_KEY_LENGTH_DEVICE", + "methodname2": "const MAX_KEY_LENGTH_DEVICE = 896;", + "api type": "Constant", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Constants", + "methodname": "MAX_STORE_ID_LENGTH", + "methodname2": "const MAX_STORE_ID_LENGTH = 128;", + "api type": "Constant", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Constants", + "methodname": "MAX_QUERY_LENGTH", + "methodname2": "const MAX_QUERY_LENGTH = 512000;", + "api type": "Constant", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Constants", + "methodname": "MAX_BATCH_SIZE", + "methodname2": "const MAX_BATCH_SIZE = 128;", + "api type": "Constant", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "ValueType", + "methodname": "STRING", + "methodname2": "STRING", + "api type": "Enum", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "ValueType", + "methodname": "INTEGER", + "methodname2": "INTEGER", + "api type": "Enum", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "ValueType", + "methodname": "FLOAT", + "methodname2": "FLOAT", + "api type": "Enum", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "ValueType", + "methodname": "BYTE_ARRAY", + "methodname2": "BYTE_ARRAY", + "api type": "Enum", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "ValueType", + "methodname": "BOOLEAN", + "methodname2": "BOOLEAN", + "api type": "Enum", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "ValueType", + "methodname": "DOUBLE", + "methodname2": "DOUBLE", + "api type": "Enum", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Value", + "methodname": "type", + "methodname2": "type: ValueType;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Value", + "methodname": "value", + "methodname2": "value: Uint8Array | string | number | boolean;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Entry", + "methodname": "key", + "methodname2": "key: string;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Entry", + "methodname": "value", + "methodname2": "value: Value;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "ChangeNotification", + "methodname": "insertEntries", + "methodname2": "insertEntries: Entry[];", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "ChangeNotification", + "methodname": "updateEntries", + "methodname2": "updateEntries: Entry[];", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "ChangeNotification", + "methodname": "deleteEntries", + "methodname2": "deleteEntries: Entry[];", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "ChangeNotification", + "methodname": "deviceId", + "methodname2": "deviceId: string;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SyncMode", + "methodname": "PULL_ONLY", + "methodname2": "PULL_ONLY", + "api type": "Enum", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SyncMode", + "methodname": "PUSH_ONLY", + "methodname2": "PUSH_ONLY", + "api type": "Enum", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SyncMode", + "methodname": "PUSH_PULL", + "methodname2": "PUSH_PULL", + "api type": "Enum", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SubscribeType", + "methodname": "SUBSCRIBE_TYPE_LOCAL", + "methodname2": "SUBSCRIBE_TYPE_LOCAL", + "api type": "Enum", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SubscribeType", + "methodname": "SUBSCRIBE_TYPE_REMOTE", + "methodname2": "SUBSCRIBE_TYPE_REMOTE", + "api type": "Enum", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SubscribeType", + "methodname": "SUBSCRIBE_TYPE_ALL", + "methodname2": "SUBSCRIBE_TYPE_ALL", + "api type": "Enum", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVStoreType", + "methodname": "DEVICE_COLLABORATION", + "methodname2": "DEVICE_COLLABORATION", + "api type": "Enum", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVStoreType", + "methodname": "SINGLE_VERSION", + "methodname2": "SINGLE_VERSION", + "api type": "Enum", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SecurityLevel", + "methodname": "S1", + "methodname2": "S1", + "api type": "Enum", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SecurityLevel", + "methodname": "S2", + "methodname2": "S2", + "api type": "Enum", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SecurityLevel", + "methodname": "S3", + "methodname2": "S3", + "api type": "Enum", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SecurityLevel", + "methodname": "S4", + "methodname2": "S4", + "api type": "Enum", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Options", + "methodname": "createIfMissing", + "methodname2": "createIfMissing?: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Options", + "methodname": "encrypt", + "methodname2": "encrypt?: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Options", + "methodname": "backup", + "methodname2": "backup?: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Options", + "methodname": "autoSync", + "methodname2": "autoSync?: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Options", + "methodname": "kvStoreType", + "methodname2": "kvStoreType?: KVStoreType;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Options", + "methodname": "securityLevel", + "methodname2": "securityLevel: SecurityLevel;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Options", + "methodname": "schema", + "methodname2": "schema?: Schema;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Schema", + "methodname": "constructor", + "methodname2": "constructor()", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Schema", + "methodname": "root", + "methodname2": "root: FieldNode;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Schema", + "methodname": "indexes", + "methodname2": "indexes: Array;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Schema", + "methodname": "mode", + "methodname2": "mode: number;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Schema", + "methodname": "skip", + "methodname2": "skip: number;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "FieldNode", + "methodname": "constructor", + "methodname2": "constructor(name: string)", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "FieldNode", + "methodname": "appendChild", + "methodname2": "appendChild(child: FieldNode): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "FieldNode", + "methodname": "default", + "methodname2": "default: string;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "FieldNode", + "methodname": "nullable", + "methodname2": "nullable: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "FieldNode", + "methodname": "type", + "methodname2": "type: number;", + "api type": "Field", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVStoreResultSet", + "methodname": "getCount", + "methodname2": "getCount(): number;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVStoreResultSet", + "methodname": "getPosition", + "methodname2": "getPosition(): number;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVStoreResultSet", + "methodname": "moveToFirst", + "methodname2": "moveToFirst(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVStoreResultSet", + "methodname": "moveToLast", + "methodname2": "moveToLast(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVStoreResultSet", + "methodname": "moveToNext", + "methodname2": "moveToNext(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVStoreResultSet", + "methodname": "moveToPrevious", + "methodname2": "moveToPrevious(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVStoreResultSet", + "methodname": "move", + "methodname2": "move(offset: number): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVStoreResultSet", + "methodname": "moveToPosition", + "methodname2": "moveToPosition(position: number): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVStoreResultSet", + "methodname": "isFirst", + "methodname2": "isFirst(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVStoreResultSet", + "methodname": "isLast", + "methodname2": "isLast(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVStoreResultSet", + "methodname": "isBeforeFirst", + "methodname2": "isBeforeFirst(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVStoreResultSet", + "methodname": "isAfterLast", + "methodname2": "isAfterLast(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVStoreResultSet", + "methodname": "getEntry", + "methodname2": "getEntry(): Entry;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "constructor", + "methodname2": "constructor()", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "reset", + "methodname2": "reset(): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "equalTo", + "methodname2": "equalTo(field: string, value: number | string | boolean): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "notEqualTo", + "methodname2": "notEqualTo(field: string, value: number | string | boolean): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "greaterThan", + "methodname2": "greaterThan(field: string, value: number | string | boolean): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "lessThan", + "methodname2": "lessThan(field: string, value: number | string): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "greaterThanOrEqualTo", + "methodname2": "greaterThanOrEqualTo(field: string, value: number | string): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "lessThanOrEqualTo", + "methodname2": "lessThanOrEqualTo(field: string, value: number | string): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "isNull", + "methodname2": "isNull(field: string): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "inNumber", + "methodname2": "inNumber(field: string, valueList: number[]): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "inString", + "methodname2": "inString(field: string, valueList: string[]): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "notInNumber", + "methodname2": "notInNumber(field: string, valueList: number[]): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "notInString", + "methodname2": "notInString(field: string, valueList: string[]): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "like", + "methodname2": "like(field: string, value: string): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "unlike", + "methodname2": "unlike(field: string, value: string): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "and", + "methodname2": "and(): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "or", + "methodname2": "or(): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "orderByAsc", + "methodname2": "orderByAsc(field: string): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "orderByDesc", + "methodname2": "orderByDesc(field: string): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "limit", + "methodname2": "limit(total: number, offset: number): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "isNotNull", + "methodname2": "isNotNull(field: string): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "beginGroup", + "methodname2": "beginGroup(): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "endGroup", + "methodname2": "endGroup(): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "prefixKey", + "methodname2": "prefixKey(prefix: string): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "setSuggestIndex", + "methodname2": "setSuggestIndex(index: string): Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "deviceId", + "methodname2": "deviceId(deviceId:string):Query;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "Query", + "methodname": "getSqlLike", + "methodname2": "getSqlLike():string;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "put", + "methodname2": "put(key: string, value: Uint8Array | string | number | boolean, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "put", + "methodname2": "put(key: string, value: Uint8Array | string | number | boolean): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "putBatch", + "methodname2": "putBatch(entries: Entry[], callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "putBatch", + "methodname2": "putBatch(entries: Entry[]): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "delete", + "methodname2": "delete(key: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "delete", + "methodname2": "delete(key: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "deleteBatch", + "methodname2": "deleteBatch(keys: string[], callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "deleteBatch", + "methodname2": "deleteBatch(keys: string[]): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "removeDeviceData", + "methodname2": "removeDeviceData(deviceId: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "removeDeviceData", + "methodname2": "removeDeviceData(deviceId: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "get", + "methodname2": "get(key: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "get", + "methodname2": "get(key: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "getEntries", + "methodname2": "getEntries(keyPrefix: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "getEntries", + "methodname2": "getEntries(keyPrefix: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "getEntries", + "methodname2": "getEntries(query: Query, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "getEntries", + "methodname2": "getEntries(query: Query): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "getResultSet", + "methodname2": "getResultSet(keyPrefix: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "getResultSet", + "methodname2": "getResultSet(keyPrefix: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "getResultSet", + "methodname2": "getResultSet(query: Query, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "getResultSet", + "methodname2": "getResultSet(query: Query): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "closeResultSet", + "methodname2": "closeResultSet(resultSet: KVStoreResultSet, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "closeResultSet", + "methodname2": "closeResultSet(resultSet: KVStoreResultSet): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "getResultSize", + "methodname2": "getResultSize(query: Query, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "getResultSize", + "methodname2": "getResultSize(query: Query): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "backup", + "methodname2": "backup(file:string, callback: AsyncCallback):void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "backup", + "methodname2": "backup(file:string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "restore", + "methodname2": "restore(file:string, callback: AsyncCallback):void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "restore", + "methodname2": "restore(file:string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "deleteBackup", + "methodname2": "deleteBackup(files:Array, callback: AsyncCallback>):void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "deleteBackup", + "methodname2": "deleteBackup(files:Array): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "startTransaction", + "methodname2": "startTransaction(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "startTransaction", + "methodname2": "startTransaction(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "commit", + "methodname2": "commit(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "commit", + "methodname2": "commit(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "rollback", + "methodname2": "rollback(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "rollback", + "methodname2": "rollback(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "enableSync", + "methodname2": "enableSync(enabled: boolean, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "enableSync", + "methodname2": "enableSync(enabled: boolean): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "setSyncRange", + "methodname2": "setSyncRange(localLabels: string[], remoteSupportLabels: string[], callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "setSyncRange", + "methodname2": "setSyncRange(localLabels: string[], remoteSupportLabels: string[]): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "setSyncParam", + "methodname2": "setSyncParam(defaultAllowedDelayMs: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "setSyncParam", + "methodname2": "setSyncParam(defaultAllowedDelayMs: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "sync", + "methodname2": "sync(deviceIds: string[], mode: SyncMode, delayMs?: number): void", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "sync", + "methodname2": "sync(deviceIds: string[], query: Query, mode: SyncMode, delayMs?: number): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "on_dataChange", + "methodname2": "on(event: 'dataChange', type: SubscribeType, listener: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "on_syncComplete", + "methodname2": "on(event: 'syncComplete', syncCallback: Callback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "off_dataChange", + "methodname2": "off(event:'dataChange', listener?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "off_syncComplete", + "methodname2": "off(event: 'syncComplete', syncCallback?: Callback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "getSecurityLevel", + "methodname2": "getSecurityLevel(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "SingleKVStore", + "methodname": "getSecurityLevel", + "methodname2": "getSecurityLevel(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "DeviceKVStore", + "methodname": "get", + "methodname2": "get(deviceId: string, key: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "DeviceKVStore", + "methodname": "get", + "methodname2": "get(deviceId: string, key: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "DeviceKVStore", + "methodname": "getEntries", + "methodname2": "getEntries(deviceId: string, keyPrefix: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "DeviceKVStore", + "methodname": "getEntries", + "methodname2": "getEntries(deviceId: string, keyPrefix: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "DeviceKVStore", + "methodname": "getEntries", + "methodname2": "getEntries(deviceId: string, query: Query, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "DeviceKVStore", + "methodname": "getEntries", + "methodname2": "getEntries(deviceId: string, query: Query): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "DeviceKVStore", + "methodname": "getResultSet", + "methodname2": "getResultSet(deviceId: string, keyPrefix: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "DeviceKVStore", + "methodname": "getResultSet", + "methodname2": "getResultSet(deviceId: string, keyPrefix: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "DeviceKVStore", + "methodname": "getResultSet", + "methodname2": "getResultSet(deviceId: string, query: Query, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "DeviceKVStore", + "methodname": "getResultSet", + "methodname2": "getResultSet(deviceId: string, query: Query): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "DeviceKVStore", + "methodname": "getResultSize", + "methodname2": "getResultSize(deviceId: string, query: Query, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "DeviceKVStore", + "methodname": "getResultSize", + "methodname2": "getResultSize(deviceId: string, query: Query): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "distributedKVStore", + "methodname": "createKVManager", + "methodname2": "function createKVManager(config: KVManagerConfig): KVManager;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVManager", + "methodname": "getKVStore", + "methodname2": "getKVStore(storeId: string, options: Options, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVManager", + "methodname": "getKVStore", + "methodname2": "getKVStore(storeId: string, options: Options): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVManager", + "methodname": "closeKVStore", + "methodname2": "closeKVStore(appId: string, storeId: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVManager", + "methodname": "closeKVStore", + "methodname2": "closeKVStore(appId: string, storeId: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVManager", + "methodname": "deleteKVStore", + "methodname2": "deleteKVStore(appId: string, storeId: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVManager", + "methodname": "deleteKVStore", + "methodname2": "deleteKVStore(appId: string, storeId: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVManager", + "methodname": "getAllKVStoreId", + "methodname2": "getAllKVStoreId(appId: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVManager", + "methodname": "getAllKVStoreId", + "methodname2": "getAllKVStoreId(appId: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVManager", + "methodname": "on_distributedDataServiceDie", + "methodname2": "on(event: 'distributedDataServiceDie', deathCallback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.distributedKVStore", + "classname": "KVManager", + "methodname": "off_distributedDataServiceDie", + "methodname2": "off(event: 'distributedDataServiceDie', deathCallback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.distributedKVStore.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "rdb", + "methodname": "getRdbStoreV9", + "methodname2": "function getRdbStoreV9(context: Context, config: StoreConfigV9, version: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "rdb", + "methodname": "getRdbStoreV9", + "methodname2": "function getRdbStoreV9(context: Context, config: StoreConfigV9, version: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "rdb", + "methodname": "deleteRdbStoreV9", + "methodname2": "function deleteRdbStoreV9(context: Context, name: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "rdb", + "methodname": "deleteRdbStoreV9", + "methodname2": "function deleteRdbStoreV9(context: Context, name: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "SecurityLevel", + "methodname": "S1", + "methodname2": "S1 = 1", + "api type": "Enum", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "SecurityLevel", + "methodname": "S2", + "methodname2": "S2 = 2", + "api type": "Enum", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "SecurityLevel", + "methodname": "S3", + "methodname2": "S3 = 3", + "api type": "Enum", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "SecurityLevel", + "methodname": "S4", + "methodname2": "S4 = 4", + "api type": "Enum", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "insert", + "methodname2": "insert(table: string, values: ValuesBucket, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "insert", + "methodname2": "insert(table: string, values: ValuesBucket): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "batchInsert", + "methodname2": "batchInsert(table: string, values: Array, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "batchInsert", + "methodname2": "batchInsert(table: string, values: Array): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "update", + "methodname2": "update(values: ValuesBucket, predicates: RdbPredicatesV9, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "update", + "methodname2": "update(values: ValuesBucket, predicates: RdbPredicatesV9): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "update", + "methodname2": "update(table: string, values: ValuesBucket, predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "update", + "methodname2": "update(table: string, values: ValuesBucket, predicates: dataSharePredicates.DataSharePredicates): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "delete", + "methodname2": "delete(predicates: RdbPredicatesV9, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "delete", + "methodname2": "delete(predicates: RdbPredicatesV9): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "delete", + "methodname2": "delete(table: string, predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "delete", + "methodname2": "delete(table: string, predicates: dataSharePredicates.DataSharePredicates): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "query", + "methodname2": "query(predicates: RdbPredicatesV9, columns: Array, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "query", + "methodname2": "query(predicates: RdbPredicatesV9, columns ?: Array): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "query", + "methodname2": "query(table: string, predicates: dataSharePredicates.DataSharePredicates, columns: Array, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "query", + "methodname2": "query(table: string, predicates: dataSharePredicates.DataSharePredicates, columns ?: Array): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "remoteQuery", + "methodname2": "remoteQuery(device: string, table: string, predicates: RdbPredicatesV9, columns: Array, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "remoteQuery", + "methodname2": "remoteQuery(device: string, table: string, predicates: RdbPredicatesV9, columns: Array): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "querySql", + "methodname2": "querySql(sql: string, bindArgs: Array, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "querySql", + "methodname2": "querySql(sql: string, bindArgs ?: Array): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "executeSql", + "methodname2": "executeSql(sql: string, bindArgs: Array, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "executeSql", + "methodname2": "executeSql(sql: string, bindArgs ?: Array): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "beginTransaction", + "methodname2": "beginTransaction(): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "commit", + "methodname2": "commit(): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "rollBack", + "methodname2": "rollBack(): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "backup", + "methodname2": "backup(destName: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "backup", + "methodname2": "backup(destName: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "restore", + "methodname2": "restore(srcName: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "restore", + "methodname2": "restore(srcName: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "setDistributedTables", + "methodname2": "setDistributedTables(tables: Array, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "setDistributedTables", + "methodname2": "setDistributedTables(tables: Array): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "obtainDistributedTableName", + "methodname2": "obtainDistributedTableName(device: string, table: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "obtainDistributedTableName", + "methodname2": "obtainDistributedTableName(device: string, table: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "sync", + "methodname2": "sync(mode: SyncMode, predicates: RdbPredicatesV9, callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "sync", + "methodname2": "sync(mode: SyncMode, predicates: RdbPredicatesV9): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "on_dataChange", + "methodname2": "on(event: 'dataChange', type: SubscribeType, observer: Callback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbStoreV9", + "methodname": "off_dataChange", + "methodname2": "off(event: 'dataChange', type: SubscribeType, observer: Callback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "StoreConfigV9", + "methodname": "name", + "methodname2": "name: string;", + "api type": "Field", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "StoreConfigV9", + "methodname": "securityLevel", + "methodname2": "securityLevel: SecurityLevel;", + "api type": "Field", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "StoreConfigV9", + "methodname": "encrypt", + "methodname2": "encrypt ?: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "constructor", + "methodname2": "constructor(name: string)", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "inDevices", + "methodname2": "inDevices(devices: Array): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "inAllDevices", + "methodname2": "inAllDevices(): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "equalTo", + "methodname2": "equalTo(field: string, value: ValueType): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "notEqualTo", + "methodname2": "notEqualTo(field: string, value: ValueType): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "beginWrap", + "methodname2": "beginWrap(): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "endWrap", + "methodname2": "endWrap(): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "or", + "methodname2": "or(): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "and", + "methodname2": "and(): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "contains", + "methodname2": "contains(field: string, value: string): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "beginsWith", + "methodname2": "beginsWith(field: string, value: string): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "endsWith", + "methodname2": "endsWith(field: string, value: string): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "isNull", + "methodname2": "isNull(field: string): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "isNotNull", + "methodname2": "isNotNull(field: string): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "like", + "methodname2": "like(field: string, value: string): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "glob", + "methodname2": "glob(field: string, value: string): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "between", + "methodname2": "between(field: string, low: ValueType, high: ValueType): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "notBetween", + "methodname2": "notBetween(field: string, low: ValueType, high: ValueType): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "greaterThan", + "methodname2": "greaterThan(field: string, value: ValueType): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "lessThan", + "methodname2": "lessThan(field: string, value: ValueType): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "greaterThanOrEqualTo", + "methodname2": "greaterThanOrEqualTo(field: string, value: ValueType): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "lessThanOrEqualTo", + "methodname2": "lessThanOrEqualTo(field: string, value: ValueType): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "orderByAsc", + "methodname2": "orderByAsc(field: string): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "orderByDesc", + "methodname2": "orderByDesc(field: string): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "distinct", + "methodname2": "distinct(): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "limitAs", + "methodname2": "limitAs(value: number): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "offsetAs", + "methodname2": "offsetAs(rowOffset: number): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "groupBy", + "methodname2": "groupBy(fields: Array): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "indexedBy", + "methodname2": "indexedBy(field: string): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "in", + "methodname2": "in(field: string, value: Array): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.data.rdb", + "classname": "RdbPredicatesV9", + "methodname": "notIn", + "methodname2": "notIn(field: string, value: Array): RdbPredicatesV9;", + "api type": "Method", + "path": "\\api\\@ohos.data.rdb.d.ts" + }, + { + "module name": "ohos.display", + "classname": "display", + "methodname": "getDefaultDisplaySync", + "methodname2": "function getDefaultDisplaySync(): Display;", + "api type": "Method", + "path": "\\api\\@ohos.display.d.ts" + }, + { + "module name": "ohos.display", + "classname": "CutoutInfo", + "methodname": "boundingRects", + "methodname2": "readonly boundingRects: Array;", + "api type": "Field", + "path": "\\api\\@ohos.display.d.ts" + }, + { + "module name": "ohos.display", + "classname": "CutoutInfo", + "methodname": "waterfallDisplayAreaRects", + "methodname2": "readonly waterfallDisplayAreaRects: WaterfallDisplayAreaRects;", + "api type": "Field", + "path": "\\api\\@ohos.display.d.ts" + }, + { + "module name": "ohos.display", + "classname": "Display", + "methodname": "getCutoutInfo", + "methodname2": "getCutoutInfo(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.display.d.ts" + }, + { + "module name": "ohos.display", + "classname": "Display", + "methodname": "getCutoutInfo", + "methodname2": "getCutoutInfo(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.display.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "geolocation", + "methodname": "on_cachedGnssLocationsReporting", + "methodname2": "function on(type: 'cachedGnssLocationsReporting', request: CachedGnssLocationsRequest, callback: Callback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "geolocation", + "methodname": "off_cachedGnssLocationsReporting", + "methodname2": "function off(type: 'cachedGnssLocationsReporting', callback?: Callback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "geolocation", + "methodname": "on_fenceStatusChange", + "methodname2": "function on(type: 'fenceStatusChange', request: GeofenceRequest, want: WantAgent): void;", + "api type": "Method", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "geolocation", + "methodname": "off_fenceStatusChange", + "methodname2": "function off(type: 'fenceStatusChange', request: GeofenceRequest, want: WantAgent): void;", + "api type": "Method", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "geolocation", + "methodname": "requestEnableLocation", + "methodname2": "function requestEnableLocation(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "geolocation", + "methodname": "requestEnableLocation", + "methodname2": "function requestEnableLocation(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "geolocation", + "methodname": "getAddressesFromLocation", + "methodname2": "function getAddressesFromLocation(request: ReverseGeoCodeRequest, callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "geolocation", + "methodname": "getAddressesFromLocation", + "methodname2": "function getAddressesFromLocation(request: ReverseGeoCodeRequest): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "geolocation", + "methodname": "getAddressesFromLocationName", + "methodname2": "function getAddressesFromLocationName(request: GeoCodeRequest, callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "geolocation", + "methodname": "getAddressesFromLocationName", + "methodname2": "function getAddressesFromLocationName(request: GeoCodeRequest): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "geolocation", + "methodname": "isGeoServiceAvailable", + "methodname2": "function isGeoServiceAvailable(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "geolocation", + "methodname": "isGeoServiceAvailable", + "methodname2": "function isGeoServiceAvailable(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "geolocation", + "methodname": "getCachedGnssLocationsSize", + "methodname2": "function getCachedGnssLocationsSize(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "geolocation", + "methodname": "getCachedGnssLocationsSize", + "methodname2": "function getCachedGnssLocationsSize(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "geolocation", + "methodname": "flushCachedGnssLocations", + "methodname2": "function flushCachedGnssLocations(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "geolocation", + "methodname": "flushCachedGnssLocations", + "methodname2": "function flushCachedGnssLocations(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "geolocation", + "methodname": "sendCommand", + "methodname2": "function sendCommand(command: LocationCommand, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "geolocation", + "methodname": "sendCommand", + "methodname2": "function sendCommand(command: LocationCommand): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "CachedGnssLocationsRequest", + "methodname": "reportingPeriodSec", + "methodname2": "reportingPeriodSec: number;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "CachedGnssLocationsRequest", + "methodname": "wakeUpCacheQueueFull", + "methodname2": "wakeUpCacheQueueFull: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeofenceRequest", + "methodname": "priority", + "methodname2": "priority: LocationRequestPriority;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeofenceRequest", + "methodname": "scenario", + "methodname2": "scenario: LocationRequestScenario;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeofenceRequest", + "methodname": "geofence", + "methodname2": "geofence: Geofence;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "Geofence", + "methodname": "latitude", + "methodname2": "latitude: number;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "Geofence", + "methodname": "longitude", + "methodname2": "longitude: number;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "Geofence", + "methodname": "radius", + "methodname2": "radius: number;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "Geofence", + "methodname": "expiration", + "methodname2": "expiration: number;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "ReverseGeoCodeRequest", + "methodname": "locale", + "methodname2": "locale?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "ReverseGeoCodeRequest", + "methodname": "latitude", + "methodname2": "latitude: number;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "ReverseGeoCodeRequest", + "methodname": "longitude", + "methodname2": "longitude: number;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "ReverseGeoCodeRequest", + "methodname": "maxItems", + "methodname2": "maxItems?: number;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoCodeRequest", + "methodname": "locale", + "methodname2": "locale?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoCodeRequest", + "methodname": "description", + "methodname2": "description: string;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoCodeRequest", + "methodname": "maxItems", + "methodname2": "maxItems?: number;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoCodeRequest", + "methodname": "minLatitude", + "methodname2": "minLatitude?: number;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoCodeRequest", + "methodname": "minLongitude", + "methodname2": "minLongitude?: number;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoCodeRequest", + "methodname": "maxLatitude", + "methodname2": "maxLatitude?: number;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoCodeRequest", + "methodname": "maxLongitude", + "methodname2": "maxLongitude?: number;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoAddress", + "methodname": "latitude", + "methodname2": "latitude?: number;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoAddress", + "methodname": "longitude", + "methodname2": "longitude?: number;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoAddress", + "methodname": "locale", + "methodname2": "locale?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoAddress", + "methodname": "placeName", + "methodname2": "placeName?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoAddress", + "methodname": "countryCode", + "methodname2": "countryCode?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoAddress", + "methodname": "countryName", + "methodname2": "countryName?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoAddress", + "methodname": "administrativeArea", + "methodname2": "administrativeArea?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoAddress", + "methodname": "subAdministrativeArea", + "methodname2": "subAdministrativeArea?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoAddress", + "methodname": "locality", + "methodname2": "locality?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoAddress", + "methodname": "subLocality", + "methodname2": "subLocality?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoAddress", + "methodname": "roadName", + "methodname2": "roadName?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoAddress", + "methodname": "subRoadName", + "methodname2": "subRoadName?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoAddress", + "methodname": "premises", + "methodname2": "premises?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoAddress", + "methodname": "postalCode", + "methodname2": "postalCode?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoAddress", + "methodname": "phoneNumber", + "methodname2": "phoneNumber?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoAddress", + "methodname": "addressUrl", + "methodname2": "addressUrl?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoAddress", + "methodname": "descriptions", + "methodname2": "descriptions?: Array;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "GeoAddress", + "methodname": "descriptionsSize", + "methodname2": "descriptionsSize?: number;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "LocationPrivacyType", + "methodname": "OTHERS", + "methodname2": "OTHERS = 0", + "api type": "Enum", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "LocationPrivacyType", + "methodname": "STARTUP", + "methodname2": "STARTUP", + "api type": "Enum", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "LocationPrivacyType", + "methodname": "CORE_LOCATION", + "methodname2": "CORE_LOCATION", + "api type": "Enum", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "LocationCommand", + "methodname": "scenario", + "methodname2": "scenario: LocationRequestScenario;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geolocation", + "classname": "LocationCommand", + "methodname": "command", + "methodname2": "command: string;", + "api type": "Field", + "path": "\\api\\@ohos.geolocation.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "geoLocationManager", + "methodname": "on_countryCodeChange", + "methodname2": "function on(type: 'countryCodeChange', callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "geoLocationManager", + "methodname": "off_countryCodeChange", + "methodname2": "function off(type: 'countryCodeChange', callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "geoLocationManager", + "methodname": "getCountryCode", + "methodname2": "function getCountryCode(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "geoLocationManager", + "methodname": "getCountryCode", + "methodname2": "function getCountryCode(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "CachedGnssLocationsRequest", + "methodname": "reportingPeriodSec", + "methodname2": "reportingPeriodSec: number;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "CachedGnssLocationsRequest", + "methodname": "wakeUpCacheQueueFull", + "methodname2": "wakeUpCacheQueueFull: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeofenceRequest", + "methodname": "priority", + "methodname2": "priority: LocationRequestPriority;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeofenceRequest", + "methodname": "scenario", + "methodname2": "scenario: LocationRequestScenario;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeofenceRequest", + "methodname": "geofence", + "methodname2": "geofence: Geofence;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "Geofence", + "methodname": "latitude", + "methodname2": "latitude: number;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "Geofence", + "methodname": "longitude", + "methodname2": "longitude: number;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "Geofence", + "methodname": "radius", + "methodname2": "radius: number;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "Geofence", + "methodname": "expiration", + "methodname2": "expiration: number;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "ReverseGeoCodeRequest", + "methodname": "locale", + "methodname2": "locale?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "ReverseGeoCodeRequest", + "methodname": "latitude", + "methodname2": "latitude: number;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "ReverseGeoCodeRequest", + "methodname": "longitude", + "methodname2": "longitude: number;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "ReverseGeoCodeRequest", + "methodname": "maxItems", + "methodname2": "maxItems?: number;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoCodeRequest", + "methodname": "locale", + "methodname2": "locale?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoCodeRequest", + "methodname": "description", + "methodname2": "description: string;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoCodeRequest", + "methodname": "maxItems", + "methodname2": "maxItems?: number;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoCodeRequest", + "methodname": "minLatitude", + "methodname2": "minLatitude?: number;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoCodeRequest", + "methodname": "minLongitude", + "methodname2": "minLongitude?: number;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoCodeRequest", + "methodname": "maxLatitude", + "methodname2": "maxLatitude?: number;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoCodeRequest", + "methodname": "maxLongitude", + "methodname2": "maxLongitude?: number;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoAddress", + "methodname": "latitude", + "methodname2": "latitude?: number;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoAddress", + "methodname": "longitude", + "methodname2": "longitude?: number;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoAddress", + "methodname": "locale", + "methodname2": "locale?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoAddress", + "methodname": "placeName", + "methodname2": "placeName?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoAddress", + "methodname": "countryCode", + "methodname2": "countryCode?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoAddress", + "methodname": "countryName", + "methodname2": "countryName?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoAddress", + "methodname": "administrativeArea", + "methodname2": "administrativeArea?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoAddress", + "methodname": "subAdministrativeArea", + "methodname2": "subAdministrativeArea?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoAddress", + "methodname": "locality", + "methodname2": "locality?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoAddress", + "methodname": "subLocality", + "methodname2": "subLocality?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoAddress", + "methodname": "roadName", + "methodname2": "roadName?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoAddress", + "methodname": "subRoadName", + "methodname2": "subRoadName?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoAddress", + "methodname": "premises", + "methodname2": "premises?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoAddress", + "methodname": "postalCode", + "methodname2": "postalCode?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoAddress", + "methodname": "phoneNumber", + "methodname2": "phoneNumber?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoAddress", + "methodname": "addressUrl", + "methodname2": "addressUrl?: string;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoAddress", + "methodname": "descriptions", + "methodname2": "descriptions?: Array;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoAddress", + "methodname": "descriptionsSize", + "methodname2": "descriptionsSize?: number;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "GeoAddress", + "methodname": "isFromMock", + "methodname2": "isFromMock?: Boolean;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "LocationPrivacyType", + "methodname": "OTHERS", + "methodname2": "OTHERS = 0", + "api type": "Enum", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "LocationPrivacyType", + "methodname": "STARTUP", + "methodname2": "STARTUP", + "api type": "Enum", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "LocationPrivacyType", + "methodname": "CORE_LOCATION", + "methodname2": "CORE_LOCATION", + "api type": "Enum", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "LocationCommand", + "methodname": "scenario", + "methodname2": "scenario: LocationRequestScenario;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "LocationCommand", + "methodname": "command", + "methodname2": "command: string;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "CountryCode", + "methodname": "country", + "methodname2": "country: string;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "CountryCode", + "methodname": "type", + "methodname2": "type: CountryCodeType;", + "api type": "Field", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "CountryCodeType", + "methodname": "COUNTRY_CODE_FROM_LOCALE", + "methodname2": "COUNTRY_CODE_FROM_LOCALE = 1", + "api type": "Enum", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "CountryCodeType", + "methodname": "COUNTRY_CODE_FROM_SIM", + "methodname2": "COUNTRY_CODE_FROM_SIM", + "api type": "Enum", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "CountryCodeType", + "methodname": "COUNTRY_CODE_FROM_LOCATION", + "methodname2": "COUNTRY_CODE_FROM_LOCATION", + "api type": "Enum", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.geoLocationManager", + "classname": "CountryCodeType", + "methodname": "COUNTRY_CODE_FROM_NETWORK", + "methodname2": "COUNTRY_CODE_FROM_NETWORK", + "api type": "Enum", + "path": "\\api\\@ohos.geoLocationManager.d.ts" + }, + { + "module name": "ohos.i18n", + "classname": "i18n", + "methodname": "getSystemLanguage", + "methodname2": "function getSystemLanguage(): string;", + "api type": "Method", + "path": "\\api\\@ohos.i18n.d.ts" + }, + { + "module name": "ohos.i18n", + "classname": "i18n", + "methodname": "getSystemRegion", + "methodname2": "function getSystemRegion(): string;", + "api type": "Method", + "path": "\\api\\@ohos.i18n.d.ts" + }, + { + "module name": "ohos.i18n", + "classname": "i18n", + "methodname": "getSystemLocale", + "methodname2": "function getSystemLocale(): string;", + "api type": "Method", + "path": "\\api\\@ohos.i18n.d.ts" + }, + { + "module name": "ohos.i18n", + "classname": "System", + "methodname": "getSystemLanguages", + "methodname2": "static getSystemLanguages(): Array;", + "api type": "Method", + "path": "\\api\\@ohos.i18n.d.ts" + }, + { + "module name": "ohos.i18n", + "classname": "System", + "methodname": "getSystemCountries", + "methodname2": "static getSystemCountries(language: string): Array;", + "api type": "Method", + "path": "\\api\\@ohos.i18n.d.ts" + }, + { + "module name": "ohos.i18n", + "classname": "System", + "methodname": "isSuggested", + "methodname2": "static isSuggested(language: string, region?: string): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.i18n.d.ts" + }, + { + "module name": "ohos.i18n", + "classname": "System", + "methodname": "getSystemLanguage", + "methodname2": "static getSystemLanguage(): string;", + "api type": "Method", + "path": "\\api\\@ohos.i18n.d.ts" + }, + { + "module name": "ohos.i18n", + "classname": "System", + "methodname": "getSystemRegion", + "methodname2": "static getSystemRegion(): string;", + "api type": "Method", + "path": "\\api\\@ohos.i18n.d.ts" + }, + { + "module name": "ohos.i18n", + "classname": "System", + "methodname": "getSystemLocale", + "methodname2": "static getSystemLocale(): string;", + "api type": "Method", + "path": "\\api\\@ohos.i18n.d.ts" + }, + { + "module name": "ohos.i18n", + "classname": "System", + "methodname": "is24HourClock", + "methodname2": "static is24HourClock(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.i18n.d.ts" + }, + { + "module name": "ohos.i18n", + "classname": "System", + "methodname": "getPreferredLanguageList", + "methodname2": "static getPreferredLanguageList(): Array;", + "api type": "Method", + "path": "\\api\\@ohos.i18n.d.ts" + }, + { + "module name": "ohos.i18n", + "classname": "System", + "methodname": "getFirstPreferredLanguage", + "methodname2": "static getFirstPreferredLanguage(): string;", + "api type": "Method", + "path": "\\api\\@ohos.i18n.d.ts" + }, + { + "module name": "ohos.i18n", + "classname": "System", + "methodname": "getAppPreferredLanguage", + "methodname2": "static getAppPreferredLanguage(): string;", + "api type": "Method", + "path": "\\api\\@ohos.i18n.d.ts" + }, + { + "module name": "ohos.i18n", + "classname": "System", + "methodname": "getUsingLocalDigit", + "methodname2": "static getUsingLocalDigit(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.i18n.d.ts" + }, + { + "module name": "ohos.i18n", + "classname": "i18n", + "methodname": "is24HourClock", + "methodname2": "function is24HourClock(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.i18n.d.ts" + }, + { + "module name": "ohos.i18n", + "classname": "i18n", + "methodname": "set24HourClock", + "methodname2": "function set24HourClock(option: boolean): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.i18n.d.ts" + }, + { + "module name": "ohos.i18n", + "classname": "i18n", + "methodname": "addPreferredLanguage", + "methodname2": "function addPreferredLanguage(language: string, index?: number): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.i18n.d.ts" + }, + { + "module name": "ohos.i18n", + "classname": "i18n", + "methodname": "removePreferredLanguage", + "methodname2": "function removePreferredLanguage(index: number): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.i18n.d.ts" + }, + { + "module name": "ohos.i18n", + "classname": "i18n", + "methodname": "getPreferredLanguageList", + "methodname2": "function getPreferredLanguageList(): Array;", + "api type": "Method", + "path": "\\api\\@ohos.i18n.d.ts" + }, + { + "module name": "ohos.i18n", + "classname": "i18n", + "methodname": "getFirstPreferredLanguage", + "methodname2": "function getFirstPreferredLanguage(): string;", + "api type": "Method", + "path": "\\api\\@ohos.i18n.d.ts" + }, + { + "module name": "ohos.inputmethod", + "classname": "inputMethod", + "methodname": "switchInputMethod", + "methodname2": "function switchInputMethod(target: InputMethodProperty, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethod.d.ts" + }, + { + "module name": "ohos.inputmethod", + "classname": "inputMethod", + "methodname": "switchInputMethod", + "methodname2": "function switchInputMethod(target: InputMethodProperty): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethod.d.ts" + }, + { + "module name": "ohos.inputmethod", + "classname": "inputMethod", + "methodname": "getCurrentInputMethod", + "methodname2": "function getCurrentInputMethod(): InputMethodProperty;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethod.d.ts" + }, + { + "module name": "ohos.inputmethod", + "classname": "inputMethod", + "methodname": "switchCurrentInputMethodSubtype", + "methodname2": "function switchCurrentInputMethodSubtype(target: InputMethodSubtype, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethod.d.ts" + }, + { + "module name": "ohos.inputmethod", + "classname": "inputMethod", + "methodname": "switchCurrentInputMethodSubtype", + "methodname2": "function switchCurrentInputMethodSubtype(target: InputMethodSubtype): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethod.d.ts" + }, + { + "module name": "ohos.inputmethod", + "classname": "inputMethod", + "methodname": "getCurrentInputMethodSubtype", + "methodname2": "function getCurrentInputMethodSubtype(): InputMethodSubtype;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethod.d.ts" + }, + { + "module name": "ohos.inputmethod", + "classname": "inputMethod", + "methodname": "switchCurrentInputMethodAndSubtype", + "methodname2": "function switchCurrentInputMethodAndSubtype(inputMethodProperty: InputMethodProperty, inputMethodSubtype: InputMethodSubtype, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethod.d.ts" + }, + { + "module name": "ohos.inputmethod", + "classname": "inputMethod", + "methodname": "switchCurrentInputMethodAndSubtype", + "methodname2": "function switchCurrentInputMethodAndSubtype(inputMethodProperty: InputMethodProperty, inputMethodSubtype: InputMethodSubtype): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethod.d.ts" + }, + { + "module name": "ohos.inputmethod", + "classname": "InputMethodSetting", + "methodname": "on_imeChange", + "methodname2": "on(type: 'imeChange', callback: (inputMethodProperty: InputMethodProperty, inputMethodSubtype: InputMethodSubtype) => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethod.d.ts" + }, + { + "module name": "ohos.inputmethod", + "classname": "InputMethodSetting", + "methodname": "off_imeChange", + "methodname2": "off(type: 'imeChange', callback?: (inputMethodProperty: InputMethodProperty, inputMethodSubtype: InputMethodSubtype) => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethod.d.ts" + }, + { + "module name": "ohos.inputmethod", + "classname": "InputMethodSetting", + "methodname": "listInputMethodSubtype", + "methodname2": "listInputMethodSubtype(inputMethodProperty: InputMethodProperty, callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethod.d.ts" + }, + { + "module name": "ohos.inputmethod", + "classname": "InputMethodSetting", + "methodname": "listInputMethodSubtype", + "methodname2": "listInputMethodSubtype(inputMethodProperty: InputMethodProperty): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethod.d.ts" + }, + { + "module name": "ohos.inputmethod", + "classname": "InputMethodSetting", + "methodname": "listCurrentInputMethodSubtype", + "methodname2": "listCurrentInputMethodSubtype(callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethod.d.ts" + }, + { + "module name": "ohos.inputmethod", + "classname": "InputMethodSetting", + "methodname": "listCurrentInputMethodSubtype", + "methodname2": "listCurrentInputMethodSubtype(): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethod.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "inputMethodEngine", + "methodname": "WINDOW_TYPE_INPUT_METHOD_FLOAT", + "methodname2": "const WINDOW_TYPE_INPUT_METHOD_FLOAT: number;", + "api type": "Constant", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "inputMethodEngine", + "methodname": "getInputMethodAbility", + "methodname2": "function getInputMethodAbility(): InputMethodAbility;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "inputMethodEngine", + "methodname": "getKeyboardDelegate", + "methodname2": "function getKeyboardDelegate(): KeyboardDelegate;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "KeyboardController", + "methodname": "hide", + "methodname2": "hide(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "KeyboardController", + "methodname": "hide", + "methodname2": "hide(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "KeyboardController", + "methodname": "hideKeyboard", + "methodname2": "hideKeyboard(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "KeyboardController", + "methodname": "hideKeyboard", + "methodname2": "hideKeyboard(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputMethodEngine", + "methodname": "on_inputStart", + "methodname2": "on(type: 'inputStart', callback: (kbController: KeyboardController, textInputClient: TextInputClient) => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputMethodEngine", + "methodname": "off_inputStart", + "methodname2": "off(type: 'inputStart', callback?: (kbController: KeyboardController, textInputClient: TextInputClient) => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputMethodEngine", + "methodname": "on_keyboardShow", + "methodname2": "on(type: 'keyboardShow'|'keyboardHide', callback: () => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputMethodEngine", + "methodname": "on_keyboardHide", + "methodname2": "on(type: 'keyboardShow'|'keyboardHide', callback: () => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputMethodEngine", + "methodname": "off_keyboardShow", + "methodname2": "off(type: 'keyboardShow'|'keyboardHide', callback?: () => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputMethodEngine", + "methodname": "off_keyboardHide", + "methodname2": "off(type: 'keyboardShow'|'keyboardHide', callback?: () => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputMethodAbility", + "methodname": "on_inputStart", + "methodname2": "on(type: 'inputStart', callback: (kbController: KeyboardController, inputClient: InputClient) => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputMethodAbility", + "methodname": "off_inputStart", + "methodname2": "off(type: 'inputStart', callback?: (kbController: KeyboardController, inputClient: InputClient) => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputMethodAbility", + "methodname": "on_inputStop", + "methodname2": "on(type: 'inputStop', callback: () => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputMethodAbility", + "methodname": "off_inputStop", + "methodname2": "off(type: 'inputStop', callback: () => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputMethodAbility", + "methodname": "on_setCallingWindow", + "methodname2": "on(type: 'setCallingWindow', callback: (wid:number) => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputMethodAbility", + "methodname": "off_setCallingWindow", + "methodname2": "off(type: 'setCallingWindow', callback: (wid:number) => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputMethodAbility", + "methodname": "on_keyboardShow", + "methodname2": "on(type: 'keyboardShow'|'keyboardHide', callback: () => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputMethodAbility", + "methodname": "on_keyboardHide", + "methodname2": "on(type: 'keyboardShow'|'keyboardHide', callback: () => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputMethodAbility", + "methodname": "off_keyboardShow", + "methodname2": "off(type: 'keyboardShow'|'keyboardHide', callback?: () => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputMethodAbility", + "methodname": "off_keyboardHide", + "methodname2": "off(type: 'keyboardShow'|'keyboardHide', callback?: () => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputMethodAbility", + "methodname": "on_setSubtype", + "methodname2": "on(type: 'setSubtype', callback: (inputMethodSubtype: InputMethodSubtype) => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputMethodAbility", + "methodname": "off_setSubtype", + "methodname2": "off(ype: 'setSubtype', callback?: (inputMethodSubtype: InputMethodSubtype) => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "TextInputClient", + "methodname": "sendKeyFunction", + "methodname2": "sendKeyFunction(action: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "TextInputClient", + "methodname": "sendKeyFunction", + "methodname2": "sendKeyFunction(action: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "TextInputClient", + "methodname": "deleteForward", + "methodname2": "deleteForward(length: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "TextInputClient", + "methodname": "deleteForward", + "methodname2": "deleteForward(length: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "TextInputClient", + "methodname": "deleteBackward", + "methodname2": "deleteBackward(length: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "TextInputClient", + "methodname": "deleteBackward", + "methodname2": "deleteBackward(length: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "TextInputClient", + "methodname": "insertText", + "methodname2": "insertText(text: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "TextInputClient", + "methodname": "insertText", + "methodname2": "insertText(text: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "TextInputClient", + "methodname": "getForward", + "methodname2": "getForward(length: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "TextInputClient", + "methodname": "getForward", + "methodname2": "getForward(length: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "TextInputClient", + "methodname": "getBackward", + "methodname2": "getBackward(length: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "TextInputClient", + "methodname": "getBackward", + "methodname2": "getBackward(length: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "TextInputClient", + "methodname": "getEditorAttribute", + "methodname2": "getEditorAttribute(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "TextInputClient", + "methodname": "getEditorAttribute", + "methodname2": "getEditorAttribute(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputClient", + "methodname": "sendKeyFunction", + "methodname2": "sendKeyFunction(action: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputClient", + "methodname": "sendKeyFunction", + "methodname2": "sendKeyFunction(action: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputClient", + "methodname": "deleteForward", + "methodname2": "deleteForward(length: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputClient", + "methodname": "deleteForward", + "methodname2": "deleteForward(length: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputClient", + "methodname": "deleteBackward", + "methodname2": "deleteBackward(length: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputClient", + "methodname": "deleteBackward", + "methodname2": "deleteBackward(length: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputClient", + "methodname": "insertText", + "methodname2": "insertText(text: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputClient", + "methodname": "insertText", + "methodname2": "insertText(text: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputClient", + "methodname": "getForward", + "methodname2": "getForward(length: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputClient", + "methodname": "getForward", + "methodname2": "getForward(length: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputClient", + "methodname": "getBackward", + "methodname2": "getBackward(length: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputClient", + "methodname": "getBackward", + "methodname2": "getBackward(length: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputClient", + "methodname": "getEditorAttribute", + "methodname2": "getEditorAttribute(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputClient", + "methodname": "getEditorAttribute", + "methodname2": "getEditorAttribute(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputClient", + "methodname": "moveCursor", + "methodname2": "moveCursor(direction: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "InputClient", + "methodname": "moveCursor", + "methodname2": "moveCursor(direction: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "KeyboardDelegate", + "methodname": "on_keyDown", + "methodname2": "on(type: 'keyDown'|'keyUp', callback: (event: KeyEvent) => boolean): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "KeyboardDelegate", + "methodname": "on_keyUp", + "methodname2": "on(type: 'keyDown'|'keyUp', callback: (event: KeyEvent) => boolean): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "KeyboardDelegate", + "methodname": "off_keyDown", + "methodname2": "off(type: 'keyDown'|'keyUp', callback?: (event: KeyEvent) => boolean): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "KeyboardDelegate", + "methodname": "off_keyUp", + "methodname2": "off(type: 'keyDown'|'keyUp', callback?: (event: KeyEvent) => boolean): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "KeyboardDelegate", + "methodname": "on_cursorContextChange", + "methodname2": "on(type: 'cursorContextChange', callback: (x: number, y: number, height: number) => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "KeyboardDelegate", + "methodname": "off_cursorContextChange", + "methodname2": "off(type: 'cursorContextChange', callback?: (x: number, y: number, height: number) => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "KeyboardDelegate", + "methodname": "on_selectionChange", + "methodname2": "on(type: 'selectionChange', callback: (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "KeyboardDelegate", + "methodname": "off_selectionChange", + "methodname2": "off(type: 'selectionChange', callback?: (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "KeyboardDelegate", + "methodname": "on_textChange", + "methodname2": "on(type: 'textChange', callback: (text: string) => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "KeyboardDelegate", + "methodname": "off_textChange", + "methodname2": "off(type: 'textChange', callback?: (text: string) => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "KeyEvent", + "methodname": "keyCode", + "methodname2": "readonly keyCode: number;", + "api type": "Field", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodengine", + "classname": "KeyEvent", + "methodname": "keyAction", + "methodname2": "readonly keyAction: number;", + "api type": "Field", + "path": "\\api\\@ohos.inputmethodengine.d.ts" + }, + { + "module name": "ohos.inputmethodextensionability", + "classname": "InputMethodExtensionAbility", + "methodname": "context", + "methodname2": "context: InputMethodExtensionContext;", + "api type": "Field", + "path": "\\api\\@ohos.inputmethodextensionability.d.ts" + }, + { + "module name": "ohos.inputmethodextensionability", + "classname": "InputMethodExtensionAbility", + "methodname": "onCreate", + "methodname2": "onCreate(want: Want): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodextensionability.d.ts" + }, + { + "module name": "ohos.inputmethodextensionability", + "classname": "InputMethodExtensionAbility", + "methodname": "onDestroy", + "methodname2": "onDestroy(): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodextensionability.d.ts" + }, + { + "module name": "ohos.inputmethodextensioncontext", + "classname": "InputMethodExtensionContext", + "methodname": "destroy", + "methodname2": "destroy(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodextensioncontext.d.ts" + }, + { + "module name": "ohos.inputmethodextensioncontext", + "classname": "InputMethodExtensionContext", + "methodname": "destroy", + "methodname2": "destroy(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.inputmethodextensioncontext.d.ts" + }, + { + "module name": "ohos.inputMethodSubtype", + "classname": "InputMethodSubtype", + "methodname": "label", + "methodname2": "readonly label?: string;", + "api type": "Field", + "path": "\\api\\@ohos.inputMethodSubtype.d.ts" + }, + { + "module name": "ohos.inputMethodSubtype", + "classname": "InputMethodSubtype", + "methodname": "name", + "methodname2": "readonly name: string;", + "api type": "Field", + "path": "\\api\\@ohos.inputMethodSubtype.d.ts" + }, + { + "module name": "ohos.inputMethodSubtype", + "classname": "InputMethodSubtype", + "methodname": "id", + "methodname2": "readonly id: string;", + "api type": "Field", + "path": "\\api\\@ohos.inputMethodSubtype.d.ts" + }, + { + "module name": "ohos.inputMethodSubtype", + "classname": "InputMethodSubtype", + "methodname": "mode", + "methodname2": "readonly mode?: 'upper'|'lower';", + "api type": "Field", + "path": "\\api\\@ohos.inputMethodSubtype.d.ts" + }, + { + "module name": "ohos.inputMethodSubtype", + "classname": "InputMethodSubtype", + "methodname": "locale", + "methodname2": "readonly locale: string;", + "api type": "Field", + "path": "\\api\\@ohos.inputMethodSubtype.d.ts" + }, + { + "module name": "ohos.inputMethodSubtype", + "classname": "InputMethodSubtype", + "methodname": "language", + "methodname2": "readonly language: string;", + "api type": "Field", + "path": "\\api\\@ohos.inputMethodSubtype.d.ts" + }, + { + "module name": "ohos.inputMethodSubtype", + "classname": "InputMethodSubtype", + "methodname": "icon", + "methodname2": "readonly icon?: string;", + "api type": "Field", + "path": "\\api\\@ohos.inputMethodSubtype.d.ts" + }, + { + "module name": "ohos.inputMethodSubtype", + "classname": "InputMethodSubtype", + "methodname": "iconId", + "methodname2": "readonly iconId?: number;", + "api type": "Field", + "path": "\\api\\@ohos.inputMethodSubtype.d.ts" + }, + { + "module name": "ohos.inputMethodSubtype", + "classname": "InputMethodSubtype", + "methodname": "extra", + "methodname2": "extra: object;", + "api type": "Field", + "path": "\\api\\@ohos.inputMethodSubtype.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioErrors", + "methodname": "ERROR_INVALID_PARAM", + "methodname2": "ERROR_INVALID_PARAM = 6800101", + "api type": "Enum", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioErrors", + "methodname": "ERROR_NO_MEMORY", + "methodname2": "ERROR_NO_MEMORY = 6800102", + "api type": "Enum", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioErrors", + "methodname": "ERROR_ILLEGAL_STATE", + "methodname2": "ERROR_ILLEGAL_STATE = 6800103", + "api type": "Enum", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioErrors", + "methodname": "ERROR_UNSUPPORTED", + "methodname2": "ERROR_UNSUPPORTED = 6800104", + "api type": "Enum", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioErrors", + "methodname": "ERROR_TIMEOUT", + "methodname2": "ERROR_TIMEOUT = 6800105", + "api type": "Enum", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioErrors", + "methodname": "ERROR_STREAM_LIMIT", + "methodname2": "ERROR_STREAM_LIMIT = 6800201", + "api type": "Enum", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioErrors", + "methodname": "ERROR_SYSTEM", + "methodname2": "ERROR_SYSTEM = 6800301", + "api type": "Enum", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "audio", + "methodname": "DEFAULT_VOLUME_GROUP_ID", + "methodname2": "const DEFAULT_VOLUME_GROUP_ID: number;", + "api type": "Constant", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "audio", + "methodname": "DEFAULT_INTERRUPT_GROUP_ID", + "methodname2": "const DEFAULT_INTERRUPT_GROUP_ID: number;", + "api type": "Constant", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "CommunicationDeviceType", + "methodname": "SPEAKER", + "methodname2": "SPEAKER = 2", + "api type": "Enum", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "InterruptMode", + "methodname": "SHARE_MODE", + "methodname2": "SHARE_MODE = 0", + "api type": "Enum", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "InterruptMode", + "methodname": "INDEPENDENT_MODE", + "methodname2": "INDEPENDENT_MODE = 1", + "api type": "Enum", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "InterruptForceType", + "methodname": "INTERRUPT_FORCE", + "methodname2": "INTERRUPT_FORCE = 0", + "api type": "Enum", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "InterruptForceType", + "methodname": "INTERRUPT_SHARE", + "methodname2": "INTERRUPT_SHARE = 1", + "api type": "Enum", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "InterruptEvent", + "methodname": "eventType", + "methodname2": "eventType: InterruptType;", + "api type": "Field", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "InterruptEvent", + "methodname": "forceType", + "methodname2": "forceType: InterruptForceType;", + "api type": "Field", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "InterruptEvent", + "methodname": "hintType", + "methodname2": "hintType: InterruptHint;", + "api type": "Field", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioManager", + "methodname": "setDeviceActive", + "methodname2": "setDeviceActive(deviceType: ActiveDeviceType, active: boolean, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioManager", + "methodname": "setDeviceActive", + "methodname2": "setDeviceActive(deviceType: ActiveDeviceType, active: boolean): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioManager", + "methodname": "isDeviceActive", + "methodname2": "isDeviceActive(deviceType: ActiveDeviceType, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioManager", + "methodname": "isDeviceActive", + "methodname2": "isDeviceActive(deviceType: ActiveDeviceType): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioManager", + "methodname": "getVolumeManager", + "methodname2": "getVolumeManager(): AudioVolumeManager;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioManager", + "methodname": "getStreamManager", + "methodname2": "getStreamManager(): AudioStreamManager;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioManager", + "methodname": "getRoutingManager", + "methodname2": "getRoutingManager(): AudioRoutingManager;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioRoutingManager", + "methodname": "getDevices", + "methodname2": "getDevices(deviceFlag: DeviceFlag, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioRoutingManager", + "methodname": "getDevices", + "methodname2": "getDevices(deviceFlag: DeviceFlag): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioRoutingManager", + "methodname": "on_deviceChange", + "methodname2": "on(type: 'deviceChange', deviceFlag: DeviceFlag, callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioRoutingManager", + "methodname": "off_deviceChange", + "methodname2": "off(type: 'deviceChange', callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioRoutingManager", + "methodname": "setCommunicationDevice", + "methodname2": "setCommunicationDevice(deviceType: CommunicationDeviceType, active: boolean, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioRoutingManager", + "methodname": "setCommunicationDevice", + "methodname2": "setCommunicationDevice(deviceType: CommunicationDeviceType, active: boolean): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioRoutingManager", + "methodname": "isCommunicationDeviceActive", + "methodname2": "isCommunicationDeviceActive(deviceType: CommunicationDeviceType, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioRoutingManager", + "methodname": "isCommunicationDeviceActive", + "methodname2": "isCommunicationDeviceActive(deviceType: CommunicationDeviceType): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioStreamManager", + "methodname": "getCurrentAudioRendererInfoArray", + "methodname2": "getCurrentAudioRendererInfoArray(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioStreamManager", + "methodname": "getCurrentAudioRendererInfoArray", + "methodname2": "getCurrentAudioRendererInfoArray(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioStreamManager", + "methodname": "getCurrentAudioCapturerInfoArray", + "methodname2": "getCurrentAudioCapturerInfoArray(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioStreamManager", + "methodname": "getCurrentAudioCapturerInfoArray", + "methodname2": "getCurrentAudioCapturerInfoArray(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioStreamManager", + "methodname": "on_audioRendererChange", + "methodname2": "on(type: \"audioRendererChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioStreamManager", + "methodname": "off_audioRendererChange", + "methodname2": "off(type: \"audioRendererChange\"): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioStreamManager", + "methodname": "on_audioCapturerChange", + "methodname2": "on(type: \"audioCapturerChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioStreamManager", + "methodname": "off_audioCapturerChange", + "methodname2": "off(type: \"audioCapturerChange\"): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioStreamManager", + "methodname": "isActive", + "methodname2": "isActive(volumeType: AudioVolumeType, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioStreamManager", + "methodname": "isActive", + "methodname2": "isActive(volumeType: AudioVolumeType): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioVolumeManager", + "methodname": "getVolumeGroupManager", + "methodname2": "getVolumeGroupManager(groupId: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioVolumeManager", + "methodname": "getVolumeGroupManager", + "methodname2": "getVolumeGroupManager(groupId: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioVolumeManager", + "methodname": "on_volumeChange", + "methodname2": "on(type: 'volumeChange', callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioVolumeGroupManager", + "methodname": "getVolume", + "methodname2": "getVolume(volumeType: AudioVolumeType, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioVolumeGroupManager", + "methodname": "getVolume", + "methodname2": "getVolume(volumeType: AudioVolumeType): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioVolumeGroupManager", + "methodname": "getMinVolume", + "methodname2": "getMinVolume(volumeType: AudioVolumeType, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioVolumeGroupManager", + "methodname": "getMinVolume", + "methodname2": "getMinVolume(volumeType: AudioVolumeType): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioVolumeGroupManager", + "methodname": "getMaxVolume", + "methodname2": "getMaxVolume(volumeType: AudioVolumeType, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioVolumeGroupManager", + "methodname": "getMaxVolume", + "methodname2": "getMaxVolume(volumeType: AudioVolumeType): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioVolumeGroupManager", + "methodname": "isMute", + "methodname2": "isMute(volumeType: AudioVolumeType, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioVolumeGroupManager", + "methodname": "isMute", + "methodname2": "isMute(volumeType: AudioVolumeType): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioVolumeGroupManager", + "methodname": "getRingerMode", + "methodname2": "getRingerMode(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioVolumeGroupManager", + "methodname": "getRingerMode", + "methodname2": "getRingerMode(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioVolumeGroupManager", + "methodname": "on_ringerModeChange", + "methodname2": "on(type: 'ringerModeChange', callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioVolumeGroupManager", + "methodname": "setMicrophoneMute", + "methodname2": "setMicrophoneMute(mute: boolean, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioVolumeGroupManager", + "methodname": "setMicrophoneMute", + "methodname2": "setMicrophoneMute(mute: boolean): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioVolumeGroupManager", + "methodname": "isMicrophoneMute", + "methodname2": "isMicrophoneMute(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioVolumeGroupManager", + "methodname": "isMicrophoneMute", + "methodname2": "isMicrophoneMute(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioVolumeGroupManager", + "methodname": "on_micStateChange", + "methodname2": "on(type: 'micStateChange', callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioRendererChangeInfo", + "methodname": "streamId", + "methodname2": "readonly streamId: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioRendererChangeInfo", + "methodname": "rendererInfo", + "methodname2": "readonly rendererInfo: AudioRendererInfo;", + "api type": "Field", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioRendererChangeInfo", + "methodname": "deviceDescriptors", + "methodname2": "readonly deviceDescriptors: AudioDeviceDescriptors;", + "api type": "Field", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioCapturerChangeInfo", + "methodname": "streamId", + "methodname2": "readonly streamId: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioCapturerChangeInfo", + "methodname": "capturerInfo", + "methodname2": "readonly capturerInfo: AudioCapturerInfo;", + "api type": "Field", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioCapturerChangeInfo", + "methodname": "deviceDescriptors", + "methodname2": "readonly deviceDescriptors: AudioDeviceDescriptors;", + "api type": "Field", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioDeviceDescriptor", + "methodname": "id", + "methodname2": "readonly id: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioDeviceDescriptor", + "methodname": "name", + "methodname2": "readonly name: string;", + "api type": "Field", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioDeviceDescriptor", + "methodname": "address", + "methodname2": "readonly address: string;", + "api type": "Field", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioDeviceDescriptor", + "methodname": "sampleRates", + "methodname2": "readonly sampleRates: Array;", + "api type": "Field", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioDeviceDescriptor", + "methodname": "channelCounts", + "methodname2": "readonly channelCounts: Array;", + "api type": "Field", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioDeviceDescriptor", + "methodname": "channelMasks", + "methodname2": "readonly channelMasks: Array;", + "api type": "Field", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "MicStateChangeEvent", + "methodname": "mute", + "methodname2": "mute: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.audio", + "classname": "AudioRenderer", + "methodname": "on_audioInterrupt", + "methodname2": "on(type: 'audioInterrupt', callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.audio.d.ts" + }, + { + "module name": "ohos.multimedia.media", + "classname": "AudioPlayer", + "methodname": "audioInterruptMode", + "methodname2": "audioInterruptMode ?: audio.InterruptMode;", + "api type": "Field", + "path": "\\api\\@ohos.multimedia.media.d.ts" + }, + { + "module name": "ohos.multimedia.media", + "classname": "AudioPlayer", + "methodname": "on_audioInterrupt", + "methodname2": "on(type: 'audioInterrupt', callback: (info: audio.InterruptEvent) => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.media.d.ts" + }, + { + "module name": "ohos.multimedia.media", + "classname": "VideoPlayer", + "methodname": "audioInterruptMode", + "methodname2": "audioInterruptMode ?: audio.InterruptMode;", + "api type": "Field", + "path": "\\api\\@ohos.multimedia.media.d.ts" + }, + { + "module name": "ohos.multimedia.media", + "classname": "VideoPlayer", + "methodname": "videoScaleType", + "methodname2": "videoScaleType ?: VideoScaleType;", + "api type": "Field", + "path": "\\api\\@ohos.multimedia.media.d.ts" + }, + { + "module name": "ohos.multimedia.media", + "classname": "VideoPlayer", + "methodname": "on_audioInterrupt", + "methodname2": "on(type: 'audioInterrupt', callback: (info: audio.InterruptEvent) => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.media.d.ts" + }, + { + "module name": "ohos.multimedia.media", + "classname": "VideoScaleType", + "methodname": "VIDEO_SCALE_TYPE_FIT_CROP", + "methodname2": "VIDEO_SCALE_TYPE_FIT_CROP = 1", + "api type": "Enum", + "path": "\\api\\@ohos.multimedia.media.d.ts" + }, + { + "module name": "ohos.multimedia.mediaLibrary", + "classname": "MediaLibrary", + "methodname": "startImagePreview", + "methodname2": "startImagePreview(images: Array, index: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.mediaLibrary.d.ts" + }, + { + "module name": "ohos.multimedia.mediaLibrary", + "classname": "MediaLibrary", + "methodname": "startImagePreview", + "methodname2": "startImagePreview(images: Array, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.mediaLibrary.d.ts" + }, + { + "module name": "ohos.multimedia.mediaLibrary", + "classname": "MediaLibrary", + "methodname": "startImagePreview", + "methodname2": "startImagePreview(images: Array, index?: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.mediaLibrary.d.ts" + }, + { + "module name": "ohos.multimedia.mediaLibrary", + "classname": "MediaLibrary", + "methodname": "startMediaSelect", + "methodname2": "startMediaSelect(option: MediaSelectOption, callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.mediaLibrary.d.ts" + }, + { + "module name": "ohos.multimedia.mediaLibrary", + "classname": "MediaLibrary", + "methodname": "startMediaSelect", + "methodname2": "startMediaSelect(option: MediaSelectOption): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.multimedia.mediaLibrary.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "KeyboardType", + "methodname": "NONE", + "methodname2": "NONE = 0", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "KeyboardType", + "methodname": "UNKNOWN", + "methodname2": "UNKNOWN = 1", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "KeyboardType", + "methodname": "ALPHABETIC_KEYBOARD", + "methodname2": "ALPHABETIC_KEYBOARD = 2", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "KeyboardType", + "methodname": "DIGITAL_KEYBOARD", + "methodname2": "DIGITAL_KEYBOARD = 3", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "KeyboardType", + "methodname": "HANDWRITING_PEN", + "methodname2": "HANDWRITING_PEN = 4", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "KeyboardType", + "methodname": "REMOTE_CONTROL", + "methodname2": "REMOTE_CONTROL = 5", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "DeviceListener", + "methodname": "type", + "methodname2": "type: ChangedType;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "DeviceListener", + "methodname": "deviceId", + "methodname2": "deviceId: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "inputDevice", + "methodname": "on_change", + "methodname2": "function on(type: \"change\", listener: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "inputDevice", + "methodname": "off_change", + "methodname2": "function off(type: \"change\", listener?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "AxisRange", + "methodname": "source", + "methodname2": "source: SourceType;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "AxisRange", + "methodname": "axis", + "methodname2": "axis: AxisType;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "AxisRange", + "methodname": "max", + "methodname2": "max: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "AxisRange", + "methodname": "min", + "methodname2": "min: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "AxisRange", + "methodname": "fuzz", + "methodname2": "fuzz: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "AxisRange", + "methodname": "flat", + "methodname2": "flat: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "AxisRange", + "methodname": "resolution", + "methodname2": "resolution: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "InputDeviceData", + "methodname": "id", + "methodname2": "id: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "InputDeviceData", + "methodname": "name", + "methodname2": "name: string;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "InputDeviceData", + "methodname": "sources", + "methodname2": "sources: Array;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "InputDeviceData", + "methodname": "axisRanges", + "methodname2": "axisRanges: Array;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "InputDeviceData", + "methodname": "bus", + "methodname2": "bus: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "InputDeviceData", + "methodname": "product", + "methodname2": "product: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "InputDeviceData", + "methodname": "vendor", + "methodname2": "vendor: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "InputDeviceData", + "methodname": "version", + "methodname2": "version: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "InputDeviceData", + "methodname": "phys", + "methodname2": "phys: string;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "InputDeviceData", + "methodname": "uniq", + "methodname2": "uniq: string;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "inputDevice", + "methodname": "getDeviceIds", + "methodname2": "function getDeviceIds(callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "inputDevice", + "methodname": "getDeviceIds", + "methodname2": "function getDeviceIds(): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "inputDevice", + "methodname": "getDevice", + "methodname2": "function getDevice(deviceId: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "inputDevice", + "methodname": "getDevice", + "methodname2": "function getDevice(deviceId: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "inputDevice", + "methodname": "getDeviceList", + "methodname2": "function getDeviceList(callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "inputDevice", + "methodname": "getDeviceList", + "methodname2": "function getDeviceList(): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "inputDevice", + "methodname": "getDeviceInfo", + "methodname2": "function getDeviceInfo(deviceId: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "inputDevice", + "methodname": "getDeviceInfo", + "methodname2": "function getDeviceInfo(deviceId: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "inputDevice", + "methodname": "supportKeys", + "methodname2": "function supportKeys(deviceId: number, keys: Array, callback: Callback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "inputDevice", + "methodname": "supportKeys", + "methodname2": "function supportKeys(deviceId: number, keys: Array): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "inputDevice", + "methodname": "getKeyboardType", + "methodname2": "function getKeyboardType(deviceId: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputDevice", + "classname": "inputDevice", + "methodname": "getKeyboardType", + "methodname2": "function getKeyboardType(deviceId: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.inputDevice.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputEvent", + "classname": "InputEvent", + "methodname": "id", + "methodname2": "id: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputEvent", + "classname": "InputEvent", + "methodname": "deviceId", + "methodname2": "deviceId: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputEvent", + "classname": "InputEvent", + "methodname": "actionTime", + "methodname2": "actionTime: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputEvent", + "classname": "InputEvent", + "methodname": "screenId", + "methodname2": "screenId: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.inputEvent", + "classname": "InputEvent", + "methodname": "windowId", + "methodname2": "windowId: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.inputEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_FN", + "methodname2": "KEYCODE_FN = 0", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_UNKNOWN", + "methodname2": "KEYCODE_UNKNOWN = -1", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_HOME", + "methodname2": "KEYCODE_HOME = 1", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BACK", + "methodname2": "KEYCODE_BACK = 2", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MEDIA_PLAY_PAUSE", + "methodname2": "KEYCODE_MEDIA_PLAY_PAUSE = 10", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MEDIA_STOP", + "methodname2": "KEYCODE_MEDIA_STOP = 11", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MEDIA_NEXT", + "methodname2": "KEYCODE_MEDIA_NEXT = 12", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MEDIA_PREVIOUS", + "methodname2": "KEYCODE_MEDIA_PREVIOUS = 13", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MEDIA_REWIND", + "methodname2": "KEYCODE_MEDIA_REWIND = 14", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MEDIA_FAST_FORWARD", + "methodname2": "KEYCODE_MEDIA_FAST_FORWARD = 15", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_VOLUME_UP", + "methodname2": "KEYCODE_VOLUME_UP = 16", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_VOLUME_DOWN", + "methodname2": "KEYCODE_VOLUME_DOWN = 17", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_POWER", + "methodname2": "KEYCODE_POWER = 18", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_CAMERA", + "methodname2": "KEYCODE_CAMERA = 19", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_VOLUME_MUTE", + "methodname2": "KEYCODE_VOLUME_MUTE = 22", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MUTE", + "methodname2": "KEYCODE_MUTE = 23", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BRIGHTNESS_UP", + "methodname2": "KEYCODE_BRIGHTNESS_UP = 40", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BRIGHTNESS_DOWN", + "methodname2": "KEYCODE_BRIGHTNESS_DOWN = 41", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_0", + "methodname2": "KEYCODE_0 = 2000", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_1", + "methodname2": "KEYCODE_1 = 2001", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_2", + "methodname2": "KEYCODE_2 = 2002", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_3", + "methodname2": "KEYCODE_3 = 2003", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_4", + "methodname2": "KEYCODE_4 = 2004", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_5", + "methodname2": "KEYCODE_5 = 2005", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_6", + "methodname2": "KEYCODE_6 = 2006", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_7", + "methodname2": "KEYCODE_7 = 2007", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_8", + "methodname2": "KEYCODE_8 = 2008", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_9", + "methodname2": "KEYCODE_9 = 2009", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_STAR", + "methodname2": "KEYCODE_STAR = 2010", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_POUND", + "methodname2": "KEYCODE_POUND = 2011", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_DPAD_UP", + "methodname2": "KEYCODE_DPAD_UP = 2012", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_DPAD_DOWN", + "methodname2": "KEYCODE_DPAD_DOWN = 2013", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_DPAD_LEFT", + "methodname2": "KEYCODE_DPAD_LEFT = 2014", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_DPAD_RIGHT", + "methodname2": "KEYCODE_DPAD_RIGHT = 2015", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_DPAD_CENTER", + "methodname2": "KEYCODE_DPAD_CENTER = 2016", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_A", + "methodname2": "KEYCODE_A = 2017", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_B", + "methodname2": "KEYCODE_B = 2018", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_C", + "methodname2": "KEYCODE_C = 2019", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_D", + "methodname2": "KEYCODE_D = 2020", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_E", + "methodname2": "KEYCODE_E = 2021", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F", + "methodname2": "KEYCODE_F = 2022", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_G", + "methodname2": "KEYCODE_G = 2023", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_H", + "methodname2": "KEYCODE_H = 2024", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_I", + "methodname2": "KEYCODE_I = 2025", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_J", + "methodname2": "KEYCODE_J = 2026", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_K", + "methodname2": "KEYCODE_K = 2027", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_L", + "methodname2": "KEYCODE_L = 2028", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_M", + "methodname2": "KEYCODE_M = 2029", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_N", + "methodname2": "KEYCODE_N = 2030", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_O", + "methodname2": "KEYCODE_O = 2031", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_P", + "methodname2": "KEYCODE_P = 2032", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_Q", + "methodname2": "KEYCODE_Q = 2033", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_R", + "methodname2": "KEYCODE_R = 2034", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_S", + "methodname2": "KEYCODE_S = 2035", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_T", + "methodname2": "KEYCODE_T = 2036", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_U", + "methodname2": "KEYCODE_U = 2037", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_V", + "methodname2": "KEYCODE_V = 2038", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_W", + "methodname2": "KEYCODE_W = 2039", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_X", + "methodname2": "KEYCODE_X = 2040", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_Y", + "methodname2": "KEYCODE_Y = 2041", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_Z", + "methodname2": "KEYCODE_Z = 2042", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_COMMA", + "methodname2": "KEYCODE_COMMA = 2043", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_PERIOD", + "methodname2": "KEYCODE_PERIOD = 2044", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_ALT_LEFT", + "methodname2": "KEYCODE_ALT_LEFT = 2045", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_ALT_RIGHT", + "methodname2": "KEYCODE_ALT_RIGHT = 2046", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SHIFT_LEFT", + "methodname2": "KEYCODE_SHIFT_LEFT = 2047", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SHIFT_RIGHT", + "methodname2": "KEYCODE_SHIFT_RIGHT = 2048", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_TAB", + "methodname2": "KEYCODE_TAB = 2049", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SPACE", + "methodname2": "KEYCODE_SPACE = 2050", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SYM", + "methodname2": "KEYCODE_SYM = 2051", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_EXPLORER", + "methodname2": "KEYCODE_EXPLORER = 2052", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_ENVELOPE", + "methodname2": "KEYCODE_ENVELOPE = 2053", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_ENTER", + "methodname2": "KEYCODE_ENTER = 2054", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_DEL", + "methodname2": "KEYCODE_DEL = 2055", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_GRAVE", + "methodname2": "KEYCODE_GRAVE = 2056", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MINUS", + "methodname2": "KEYCODE_MINUS = 2057", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_EQUALS", + "methodname2": "KEYCODE_EQUALS = 2058", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_LEFT_BRACKET", + "methodname2": "KEYCODE_LEFT_BRACKET = 2059", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_RIGHT_BRACKET", + "methodname2": "KEYCODE_RIGHT_BRACKET = 2060", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BACKSLASH", + "methodname2": "KEYCODE_BACKSLASH = 2061", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SEMICOLON", + "methodname2": "KEYCODE_SEMICOLON = 2062", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_APOSTROPHE", + "methodname2": "KEYCODE_APOSTROPHE = 2063", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SLASH", + "methodname2": "KEYCODE_SLASH = 2064", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_AT", + "methodname2": "KEYCODE_AT = 2065", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_PLUS", + "methodname2": "KEYCODE_PLUS = 2066", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MENU", + "methodname2": "KEYCODE_MENU = 2067", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_PAGE_UP", + "methodname2": "KEYCODE_PAGE_UP = 2068", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_PAGE_DOWN", + "methodname2": "KEYCODE_PAGE_DOWN = 2069", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_ESCAPE", + "methodname2": "KEYCODE_ESCAPE = 2070", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_FORWARD_DEL", + "methodname2": "KEYCODE_FORWARD_DEL = 2071", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_CTRL_LEFT", + "methodname2": "KEYCODE_CTRL_LEFT = 2072", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_CTRL_RIGHT", + "methodname2": "KEYCODE_CTRL_RIGHT = 2073", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_CAPS_LOCK", + "methodname2": "KEYCODE_CAPS_LOCK = 2074", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SCROLL_LOCK", + "methodname2": "KEYCODE_SCROLL_LOCK = 2075", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_META_LEFT", + "methodname2": "KEYCODE_META_LEFT = 2076", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_META_RIGHT", + "methodname2": "KEYCODE_META_RIGHT = 2077", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_FUNCTION", + "methodname2": "KEYCODE_FUNCTION = 2078", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SYSRQ", + "methodname2": "KEYCODE_SYSRQ = 2079", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BREAK", + "methodname2": "KEYCODE_BREAK = 2080", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MOVE_HOME", + "methodname2": "KEYCODE_MOVE_HOME = 2081", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MOVE_END", + "methodname2": "KEYCODE_MOVE_END = 2082", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_INSERT", + "methodname2": "KEYCODE_INSERT = 2083", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_FORWARD", + "methodname2": "KEYCODE_FORWARD = 2084", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MEDIA_PLAY", + "methodname2": "KEYCODE_MEDIA_PLAY = 2085", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MEDIA_PAUSE", + "methodname2": "KEYCODE_MEDIA_PAUSE = 2086", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MEDIA_CLOSE", + "methodname2": "KEYCODE_MEDIA_CLOSE = 2087", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MEDIA_EJECT", + "methodname2": "KEYCODE_MEDIA_EJECT = 2088", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MEDIA_RECORD", + "methodname2": "KEYCODE_MEDIA_RECORD = 2089", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F1", + "methodname2": "KEYCODE_F1 = 2090", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F2", + "methodname2": "KEYCODE_F2 = 2091", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F3", + "methodname2": "KEYCODE_F3 = 2092", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F4", + "methodname2": "KEYCODE_F4 = 2093", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F5", + "methodname2": "KEYCODE_F5 = 2094", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F6", + "methodname2": "KEYCODE_F6 = 2095", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F7", + "methodname2": "KEYCODE_F7 = 2096", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F8", + "methodname2": "KEYCODE_F8 = 2097", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F9", + "methodname2": "KEYCODE_F9 = 2098", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F10", + "methodname2": "KEYCODE_F10 = 2099", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F11", + "methodname2": "KEYCODE_F11 = 2100", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F12", + "methodname2": "KEYCODE_F12 = 2101", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUM_LOCK", + "methodname2": "KEYCODE_NUM_LOCK = 2102", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUMPAD_0", + "methodname2": "KEYCODE_NUMPAD_0 = 2103", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUMPAD_1", + "methodname2": "KEYCODE_NUMPAD_1 = 2104", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUMPAD_2", + "methodname2": "KEYCODE_NUMPAD_2 = 2105", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUMPAD_3", + "methodname2": "KEYCODE_NUMPAD_3 = 2106", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUMPAD_4", + "methodname2": "KEYCODE_NUMPAD_4 = 2107", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUMPAD_5", + "methodname2": "KEYCODE_NUMPAD_5 = 2108", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUMPAD_6", + "methodname2": "KEYCODE_NUMPAD_6 = 2109", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUMPAD_7", + "methodname2": "KEYCODE_NUMPAD_7 = 2110", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUMPAD_8", + "methodname2": "KEYCODE_NUMPAD_8 = 2111", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUMPAD_9", + "methodname2": "KEYCODE_NUMPAD_9 = 2112", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUMPAD_DIVIDE", + "methodname2": "KEYCODE_NUMPAD_DIVIDE = 2113", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUMPAD_MULTIPLY", + "methodname2": "KEYCODE_NUMPAD_MULTIPLY = 2114", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUMPAD_SUBTRACT", + "methodname2": "KEYCODE_NUMPAD_SUBTRACT = 2115", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUMPAD_ADD", + "methodname2": "KEYCODE_NUMPAD_ADD = 2116", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUMPAD_DOT", + "methodname2": "KEYCODE_NUMPAD_DOT = 2117", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUMPAD_COMMA", + "methodname2": "KEYCODE_NUMPAD_COMMA = 2118", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUMPAD_ENTER", + "methodname2": "KEYCODE_NUMPAD_ENTER = 2119", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUMPAD_EQUALS", + "methodname2": "KEYCODE_NUMPAD_EQUALS = 2120", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUMPAD_LEFT_PAREN", + "methodname2": "KEYCODE_NUMPAD_LEFT_PAREN = 2121", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUMPAD_RIGHT_PAREN", + "methodname2": "KEYCODE_NUMPAD_RIGHT_PAREN = 2122", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_VIRTUAL_MULTITASK", + "methodname2": "KEYCODE_VIRTUAL_MULTITASK = 2210", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SLEEP", + "methodname2": "KEYCODE_SLEEP = 2600", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_ZENKAKU_HANKAKU", + "methodname2": "KEYCODE_ZENKAKU_HANKAKU = 2601", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_102ND", + "methodname2": "KEYCODE_102ND = 2602", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_RO", + "methodname2": "KEYCODE_RO = 2603", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_KATAKANA", + "methodname2": "KEYCODE_KATAKANA = 2604", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_HIRAGANA", + "methodname2": "KEYCODE_HIRAGANA = 2605", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_HENKAN", + "methodname2": "KEYCODE_HENKAN = 2606", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_KATAKANA_HIRAGANA", + "methodname2": "KEYCODE_KATAKANA_HIRAGANA = 2607", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MUHENKAN", + "methodname2": "KEYCODE_MUHENKAN = 2608", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_LINEFEED", + "methodname2": "KEYCODE_LINEFEED = 2609", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MACRO", + "methodname2": "KEYCODE_MACRO = 2610", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NUMPAD_PLUSMINUS", + "methodname2": "KEYCODE_NUMPAD_PLUSMINUS = 2611", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SCALE", + "methodname2": "KEYCODE_SCALE = 2612", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_HANGUEL", + "methodname2": "KEYCODE_HANGUEL = 2613", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_HANJA", + "methodname2": "KEYCODE_HANJA = 2614", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_YEN", + "methodname2": "KEYCODE_YEN = 2615", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_STOP", + "methodname2": "KEYCODE_STOP = 2616", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_AGAIN", + "methodname2": "KEYCODE_AGAIN = 2617", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_PROPS", + "methodname2": "KEYCODE_PROPS = 2618", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_UNDO", + "methodname2": "KEYCODE_UNDO = 2619", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_COPY", + "methodname2": "KEYCODE_COPY = 2620", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_OPEN", + "methodname2": "KEYCODE_OPEN = 2621", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_PASTE", + "methodname2": "KEYCODE_PASTE = 2622", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_FIND", + "methodname2": "KEYCODE_FIND = 2623", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_CUT", + "methodname2": "KEYCODE_CUT = 2624", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_HELP", + "methodname2": "KEYCODE_HELP = 2625", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_CALC", + "methodname2": "KEYCODE_CALC = 2626", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_FILE", + "methodname2": "KEYCODE_FILE = 2627", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BOOKMARKS", + "methodname2": "KEYCODE_BOOKMARKS = 2628", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NEXT", + "methodname2": "KEYCODE_NEXT = 2629", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_PLAYPAUSE", + "methodname2": "KEYCODE_PLAYPAUSE = 2630", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_PREVIOUS", + "methodname2": "KEYCODE_PREVIOUS = 2631", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_STOPCD", + "methodname2": "KEYCODE_STOPCD = 2632", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_CONFIG", + "methodname2": "KEYCODE_CONFIG = 2634", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_REFRESH", + "methodname2": "KEYCODE_REFRESH = 2635", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_EXIT", + "methodname2": "KEYCODE_EXIT = 2636", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_EDIT", + "methodname2": "KEYCODE_EDIT = 2637", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SCROLLUP", + "methodname2": "KEYCODE_SCROLLUP = 2638", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SCROLLDOWN", + "methodname2": "KEYCODE_SCROLLDOWN = 2639", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NEW", + "methodname2": "KEYCODE_NEW = 2640", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_REDO", + "methodname2": "KEYCODE_REDO = 2641", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_CLOSE", + "methodname2": "KEYCODE_CLOSE = 2642", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_PLAY", + "methodname2": "KEYCODE_PLAY = 2643", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BASSBOOST", + "methodname2": "KEYCODE_BASSBOOST = 2644", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_PRINT", + "methodname2": "KEYCODE_PRINT = 2645", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_CHAT", + "methodname2": "KEYCODE_CHAT = 2646", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_FINANCE", + "methodname2": "KEYCODE_FINANCE = 2647", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_CANCEL", + "methodname2": "KEYCODE_CANCEL = 2648", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_KBDILLUM_TOGGLE", + "methodname2": "KEYCODE_KBDILLUM_TOGGLE = 2649", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_KBDILLUM_DOWN", + "methodname2": "KEYCODE_KBDILLUM_DOWN = 2650", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_KBDILLUM_UP", + "methodname2": "KEYCODE_KBDILLUM_UP = 2651", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SEND", + "methodname2": "KEYCODE_SEND = 2652", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_REPLY", + "methodname2": "KEYCODE_REPLY = 2653", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_FORWARDMAIL", + "methodname2": "KEYCODE_FORWARDMAIL = 2654", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SAVE", + "methodname2": "KEYCODE_SAVE = 2655", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_DOCUMENTS", + "methodname2": "KEYCODE_DOCUMENTS = 2656", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_VIDEO_NEXT", + "methodname2": "KEYCODE_VIDEO_NEXT = 2657", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_VIDEO_PREV", + "methodname2": "KEYCODE_VIDEO_PREV = 2658", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BRIGHTNESS_CYCLE", + "methodname2": "KEYCODE_BRIGHTNESS_CYCLE = 2659", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BRIGHTNESS_ZERO", + "methodname2": "KEYCODE_BRIGHTNESS_ZERO = 2660", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_DISPLAY_OFF", + "methodname2": "KEYCODE_DISPLAY_OFF = 2661", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BTN_MISC", + "methodname2": "KEYCODE_BTN_MISC = 2662", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_GOTO", + "methodname2": "KEYCODE_GOTO = 2663", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_INFO", + "methodname2": "KEYCODE_INFO = 2664", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_PROGRAM", + "methodname2": "KEYCODE_PROGRAM = 2665", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_PVR", + "methodname2": "KEYCODE_PVR = 2666", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SUBTITLE", + "methodname2": "KEYCODE_SUBTITLE = 2667", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_FULL_SCREEN", + "methodname2": "KEYCODE_FULL_SCREEN = 2668", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_KEYBOARD", + "methodname2": "KEYCODE_KEYBOARD = 2669", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_ASPECT_RATIO", + "methodname2": "KEYCODE_ASPECT_RATIO = 2670", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_PC", + "methodname2": "KEYCODE_PC = 2671", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_TV", + "methodname2": "KEYCODE_TV = 2672", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_TV2", + "methodname2": "KEYCODE_TV2 = 2673", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_VCR", + "methodname2": "KEYCODE_VCR = 2674", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_VCR2", + "methodname2": "KEYCODE_VCR2 = 2675", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SAT", + "methodname2": "KEYCODE_SAT = 2676", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_CD", + "methodname2": "KEYCODE_CD = 2677", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_TAPE", + "methodname2": "KEYCODE_TAPE = 2678", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_TUNER", + "methodname2": "KEYCODE_TUNER = 2679", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_PLAYER", + "methodname2": "KEYCODE_PLAYER = 2680", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_DVD", + "methodname2": "KEYCODE_DVD = 2681", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_AUDIO", + "methodname2": "KEYCODE_AUDIO = 2682", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_VIDEO", + "methodname2": "KEYCODE_VIDEO = 2683", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MEMO", + "methodname2": "KEYCODE_MEMO = 2684", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_CALENDAR", + "methodname2": "KEYCODE_CALENDAR = 2685", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_RED", + "methodname2": "KEYCODE_RED = 2686", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_GREEN", + "methodname2": "KEYCODE_GREEN = 2687", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_YELLOW", + "methodname2": "KEYCODE_YELLOW = 2688", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BLUE", + "methodname2": "KEYCODE_BLUE = 2689", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_CHANNELUP", + "methodname2": "KEYCODE_CHANNELUP = 2690", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_CHANNELDOWN", + "methodname2": "KEYCODE_CHANNELDOWN = 2691", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_LAST", + "methodname2": "KEYCODE_LAST = 2692", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_RESTART", + "methodname2": "KEYCODE_RESTART = 2693", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SLOW", + "methodname2": "KEYCODE_SLOW = 2694", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SHUFFLE", + "methodname2": "KEYCODE_SHUFFLE = 2695", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_VIDEOPHONE", + "methodname2": "KEYCODE_VIDEOPHONE = 2696", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_GAMES", + "methodname2": "KEYCODE_GAMES = 2697", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_ZOOMIN", + "methodname2": "KEYCODE_ZOOMIN = 2698", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_ZOOMOUT", + "methodname2": "KEYCODE_ZOOMOUT = 2699", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_ZOOMRESET", + "methodname2": "KEYCODE_ZOOMRESET = 2700", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_WORDPROCESSOR", + "methodname2": "KEYCODE_WORDPROCESSOR = 2701", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_EDITOR", + "methodname2": "KEYCODE_EDITOR = 2702", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SPREADSHEET", + "methodname2": "KEYCODE_SPREADSHEET = 2703", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_GRAPHICSEDITOR", + "methodname2": "KEYCODE_GRAPHICSEDITOR = 2704", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_PRESENTATION", + "methodname2": "KEYCODE_PRESENTATION = 2705", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_DATABASE", + "methodname2": "KEYCODE_DATABASE = 2706", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_NEWS", + "methodname2": "KEYCODE_NEWS = 2707", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_VOICEMAIL", + "methodname2": "KEYCODE_VOICEMAIL = 2708", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_ADDRESSBOOK", + "methodname2": "KEYCODE_ADDRESSBOOK = 2709", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MESSENGER", + "methodname2": "KEYCODE_MESSENGER = 2710", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BRIGHTNESS_TOGGLE", + "methodname2": "KEYCODE_BRIGHTNESS_TOGGLE = 2711", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SPELLCHECK", + "methodname2": "KEYCODE_SPELLCHECK = 2712", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_COFFEE", + "methodname2": "KEYCODE_COFFEE = 2713", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MEDIA_REPEAT", + "methodname2": "KEYCODE_MEDIA_REPEAT = 2714", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_IMAGES", + "methodname2": "KEYCODE_IMAGES = 2715", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BUTTONCONFIG", + "methodname2": "KEYCODE_BUTTONCONFIG = 2716", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_TASKMANAGER", + "methodname2": "KEYCODE_TASKMANAGER = 2717", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_JOURNAL", + "methodname2": "KEYCODE_JOURNAL = 2718", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_CONTROLPANEL", + "methodname2": "KEYCODE_CONTROLPANEL = 2719", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_APPSELECT", + "methodname2": "KEYCODE_APPSELECT = 2720", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SCREENSAVER", + "methodname2": "KEYCODE_SCREENSAVER = 2721", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_ASSISTANT", + "methodname2": "KEYCODE_ASSISTANT = 2722", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_KBD_LAYOUT_NEXT", + "methodname2": "KEYCODE_KBD_LAYOUT_NEXT = 2723", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BRIGHTNESS_MIN", + "methodname2": "KEYCODE_BRIGHTNESS_MIN = 2724", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BRIGHTNESS_MAX", + "methodname2": "KEYCODE_BRIGHTNESS_MAX = 2725", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_KBDINPUTASSIST_PREV", + "methodname2": "KEYCODE_KBDINPUTASSIST_PREV = 2726", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_KBDINPUTASSIST_NEXT", + "methodname2": "KEYCODE_KBDINPUTASSIST_NEXT = 2727", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_KBDINPUTASSIST_PREVGROUP", + "methodname2": "KEYCODE_KBDINPUTASSIST_PREVGROUP = 2728", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_KBDINPUTASSIST_NEXTGROUP", + "methodname2": "KEYCODE_KBDINPUTASSIST_NEXTGROUP = 2729", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_KBDINPUTASSIST_ACCEPT", + "methodname2": "KEYCODE_KBDINPUTASSIST_ACCEPT = 2730", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_KBDINPUTASSIST_CANCEL", + "methodname2": "KEYCODE_KBDINPUTASSIST_CANCEL = 2731", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_FRONT", + "methodname2": "KEYCODE_FRONT = 2800", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SETUP", + "methodname2": "KEYCODE_SETUP = 2801", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_WAKEUP", + "methodname2": "KEYCODE_WAKEUP = 2802", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SENDFILE", + "methodname2": "KEYCODE_SENDFILE = 2803", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_DELETEFILE", + "methodname2": "KEYCODE_DELETEFILE = 2804", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_XFER", + "methodname2": "KEYCODE_XFER = 2805", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_PROG1", + "methodname2": "KEYCODE_PROG1 = 2806", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_PROG2", + "methodname2": "KEYCODE_PROG2 = 2807", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MSDOS", + "methodname2": "KEYCODE_MSDOS = 2808", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SCREENLOCK", + "methodname2": "KEYCODE_SCREENLOCK = 2809", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_DIRECTION_ROTATE_DISPLAY", + "methodname2": "KEYCODE_DIRECTION_ROTATE_DISPLAY = 2810", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_CYCLEWINDOWS", + "methodname2": "KEYCODE_CYCLEWINDOWS = 2811", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_COMPUTER", + "methodname2": "KEYCODE_COMPUTER = 2812", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_EJECTCLOSECD", + "methodname2": "KEYCODE_EJECTCLOSECD = 2813", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_ISO", + "methodname2": "KEYCODE_ISO = 2814", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_MOVE", + "methodname2": "KEYCODE_MOVE = 2815", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F13", + "methodname2": "KEYCODE_F13 = 2816", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F14", + "methodname2": "KEYCODE_F14 = 2817", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F15", + "methodname2": "KEYCODE_F15 = 2818", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F16", + "methodname2": "KEYCODE_F16 = 2819", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F17", + "methodname2": "KEYCODE_F17 = 2820", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F18", + "methodname2": "KEYCODE_F18 = 2821", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F19", + "methodname2": "KEYCODE_F19 = 2822", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F20", + "methodname2": "KEYCODE_F20 = 2823", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F21", + "methodname2": "KEYCODE_F21 = 2824", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F22", + "methodname2": "KEYCODE_F22 = 2825", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F23", + "methodname2": "KEYCODE_F23 = 2826", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_F24", + "methodname2": "KEYCODE_F24 = 2827", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_PROG3", + "methodname2": "KEYCODE_PROG3 = 2828", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_PROG4", + "methodname2": "KEYCODE_PROG4 = 2829", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_DASHBOARD", + "methodname2": "KEYCODE_DASHBOARD = 2830", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SUSPEND", + "methodname2": "KEYCODE_SUSPEND = 2831", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_HP", + "methodname2": "KEYCODE_HP = 2832", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SOUND", + "methodname2": "KEYCODE_SOUND = 2833", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_QUESTION", + "methodname2": "KEYCODE_QUESTION = 2834", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_CONNECT", + "methodname2": "KEYCODE_CONNECT = 2836", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SPORT", + "methodname2": "KEYCODE_SPORT = 2837", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SHOP", + "methodname2": "KEYCODE_SHOP = 2838", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_ALTERASE", + "methodname2": "KEYCODE_ALTERASE = 2839", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_SWITCHVIDEOMODE", + "methodname2": "KEYCODE_SWITCHVIDEOMODE = 2841", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BATTERY", + "methodname2": "KEYCODE_BATTERY = 2842", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BLUETOOTH", + "methodname2": "KEYCODE_BLUETOOTH = 2843", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_WLAN", + "methodname2": "KEYCODE_WLAN = 2844", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_UWB", + "methodname2": "KEYCODE_UWB = 2845", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_WWAN_WIMAX", + "methodname2": "KEYCODE_WWAN_WIMAX = 2846", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_RFKILL", + "methodname2": "KEYCODE_RFKILL = 2847", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_CHANNEL", + "methodname2": "KEYCODE_CHANNEL = 3001", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BTN_0", + "methodname2": "KEYCODE_BTN_0 = 3100", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BTN_1", + "methodname2": "KEYCODE_BTN_1 = 3101", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BTN_2", + "methodname2": "KEYCODE_BTN_2 = 3102", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BTN_3", + "methodname2": "KEYCODE_BTN_3 = 3103", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BTN_4", + "methodname2": "KEYCODE_BTN_4 = 3104", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BTN_5", + "methodname2": "KEYCODE_BTN_5 = 3105", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BTN_6", + "methodname2": "KEYCODE_BTN_6 = 3106", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BTN_7", + "methodname2": "KEYCODE_BTN_7 = 3107", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BTN_8", + "methodname2": "KEYCODE_BTN_8 = 3108", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyCode", + "classname": "KeyCode", + "methodname": "KEYCODE_BTN_9", + "methodname2": "KEYCODE_BTN_9 = 3109", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyCode.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyEvent", + "classname": "Action", + "methodname": "CANCEL", + "methodname2": "CANCEL = 0", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyEvent", + "classname": "Action", + "methodname": "DOWN", + "methodname2": "DOWN = 1", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyEvent", + "classname": "Action", + "methodname": "UP", + "methodname2": "UP = 2", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.keyEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyEvent", + "classname": "Key", + "methodname": "code", + "methodname2": "code: KeyCode;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.keyEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyEvent", + "classname": "Key", + "methodname": "pressedTime", + "methodname2": "pressedTime: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.keyEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyEvent", + "classname": "Key", + "methodname": "deviceId", + "methodname2": "deviceId: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.keyEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyEvent", + "classname": "KeyEvent", + "methodname": "action", + "methodname2": "action: Action;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.keyEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyEvent", + "classname": "KeyEvent", + "methodname": "key", + "methodname2": "key: Key;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.keyEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyEvent", + "classname": "KeyEvent", + "methodname": "unicodeChar", + "methodname2": "unicodeChar: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.keyEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyEvent", + "classname": "KeyEvent", + "methodname": "keys", + "methodname2": "keys: Key[];", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.keyEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyEvent", + "classname": "KeyEvent", + "methodname": "ctrlKey", + "methodname2": "ctrlKey: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.keyEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyEvent", + "classname": "KeyEvent", + "methodname": "altKey", + "methodname2": "altKey: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.keyEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyEvent", + "classname": "KeyEvent", + "methodname": "shiftKey", + "methodname2": "shiftKey: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.keyEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyEvent", + "classname": "KeyEvent", + "methodname": "logoKey", + "methodname2": "logoKey: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.keyEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyEvent", + "classname": "KeyEvent", + "methodname": "fnKey", + "methodname2": "fnKey: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.keyEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyEvent", + "classname": "KeyEvent", + "methodname": "capsLock", + "methodname2": "capsLock: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.keyEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyEvent", + "classname": "KeyEvent", + "methodname": "numLock", + "methodname2": "numLock: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.keyEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.keyEvent", + "classname": "KeyEvent", + "methodname": "scrollLock", + "methodname2": "scrollLock: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.keyEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "Action", + "methodname": "CANCEL", + "methodname2": "CANCEL = 0", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "Action", + "methodname": "MOVE", + "methodname2": "MOVE = 1", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "Action", + "methodname": "BUTTON_DOWN", + "methodname2": "BUTTON_DOWN = 2", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "Action", + "methodname": "BUTTON_UP", + "methodname2": "BUTTON_UP = 3", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "Action", + "methodname": "AXIS_BEGIN", + "methodname2": "AXIS_BEGIN = 4", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "Action", + "methodname": "AXIS_UPDATE", + "methodname2": "AXIS_UPDATE = 5", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "Action", + "methodname": "AXIS_END", + "methodname2": "AXIS_END = 6", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "Button", + "methodname": "LEFT", + "methodname2": "LEFT = 0", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "Button", + "methodname": "MIDDLE", + "methodname2": "MIDDLE = 1", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "Button", + "methodname": "RIGHT", + "methodname2": "RIGHT = 2", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "Button", + "methodname": "SIDE", + "methodname2": "SIDE = 3", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "Button", + "methodname": "EXTRA", + "methodname2": "EXTRA = 4", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "Button", + "methodname": "FORWARD", + "methodname2": "FORWARD = 5", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "Button", + "methodname": "BACK", + "methodname2": "BACK = 6", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "Button", + "methodname": "TASK", + "methodname2": "TASK = 7", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "Axis", + "methodname": "SCROLL_VERTICAL", + "methodname2": "SCROLL_VERTICAL = 0", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "Axis", + "methodname": "SCROLL_HORIZONTAL", + "methodname2": "SCROLL_HORIZONTAL = 1", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "Axis", + "methodname": "PINCH", + "methodname2": "PINCH = 2", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "AxisValue", + "methodname": "axis", + "methodname2": "axis: Axis;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "AxisValue", + "methodname": "value", + "methodname2": "value: number", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "MouseEvent", + "methodname": "action", + "methodname2": "action: Action;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "MouseEvent", + "methodname": "screenX", + "methodname2": "screenX: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "MouseEvent", + "methodname": "screenY", + "methodname2": "screenY: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "MouseEvent", + "methodname": "windowX", + "methodname2": "windowX: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "MouseEvent", + "methodname": "windowY", + "methodname2": "windowY: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "MouseEvent", + "methodname": "rawDeltaX", + "methodname2": "rawDeltaX: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "MouseEvent", + "methodname": "rawDeltaY", + "methodname2": "rawDeltaY: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "MouseEvent", + "methodname": "button", + "methodname2": "button: Button;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "MouseEvent", + "methodname": "pressedButtons", + "methodname2": "pressedButtons: Button[];", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "MouseEvent", + "methodname": "axes", + "methodname2": "axes: AxisValue[];", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "MouseEvent", + "methodname": "pressedKeys", + "methodname2": "pressedKeys: KeyCode[];", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "MouseEvent", + "methodname": "ctrlKey", + "methodname2": "ctrlKey: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "MouseEvent", + "methodname": "altKey", + "methodname2": "altKey: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "MouseEvent", + "methodname": "shiftKey", + "methodname2": "shiftKey: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "MouseEvent", + "methodname": "logoKey", + "methodname2": "logoKey: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "MouseEvent", + "methodname": "fnKey", + "methodname2": "fnKey:boolean", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "MouseEvent", + "methodname": "capsLock", + "methodname2": "capsLock:boolean", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "MouseEvent", + "methodname": "numLock", + "methodname2": "numLock:boolean", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.mouseEvent", + "classname": "MouseEvent", + "methodname": "scrollLock", + "methodname2": "scrollLock:boolean", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.mouseEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "DEFAULT", + "methodname2": "DEFAULT", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "EAST", + "methodname2": "EAST", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "WEST", + "methodname2": "WEST", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "SOUTH", + "methodname2": "SOUTH", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "NORTH", + "methodname2": "NORTH", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "WEST_EAST", + "methodname2": "WEST_EAST", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "NORTH_SOUTH", + "methodname2": "NORTH_SOUTH", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "NORTH_EAST", + "methodname2": "NORTH_EAST", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "NORTH_WEST", + "methodname2": "NORTH_WEST", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "SOUTH_EAST", + "methodname2": "SOUTH_EAST", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "SOUTH_WEST", + "methodname2": "SOUTH_WEST", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "NORTH_EAST_SOUTH_WEST", + "methodname2": "NORTH_EAST_SOUTH_WEST", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "NORTH_WEST_SOUTH_EAST", + "methodname2": "NORTH_WEST_SOUTH_EAST", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "CROSS", + "methodname2": "CROSS", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "CURSOR_COPY", + "methodname2": "CURSOR_COPY", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "CURSOR_FORBID", + "methodname2": "CURSOR_FORBID", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "COLOR_SUCKER", + "methodname2": "COLOR_SUCKER", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "HAND_GRABBING", + "methodname2": "HAND_GRABBING", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "HAND_OPEN", + "methodname2": "HAND_OPEN", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "HAND_POINTING", + "methodname2": "HAND_POINTING", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "HELP", + "methodname2": "HELP", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "MOVE", + "methodname2": "MOVE", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "RESIZE_LEFT_RIGHT", + "methodname2": "RESIZE_LEFT_RIGHT", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "RESIZE_UP_DOWN", + "methodname2": "RESIZE_UP_DOWN", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "SCREENSHOT_CHOOSE", + "methodname2": "SCREENSHOT_CHOOSE", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "SCREENSHOT_CURSOR", + "methodname2": "SCREENSHOT_CURSOR", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "TEXT_CURSOR", + "methodname2": "TEXT_CURSOR", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "ZOOM_IN", + "methodname2": "ZOOM_IN", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "ZOOM_OUT", + "methodname2": "ZOOM_OUT", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "MIDDLE_BTN_EAST", + "methodname2": "MIDDLE_BTN_EAST", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "MIDDLE_BTN_WEST", + "methodname2": "MIDDLE_BTN_WEST", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "MIDDLE_BTN_SOUTH", + "methodname2": "MIDDLE_BTN_SOUTH", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "MIDDLE_BTN_NORTH", + "methodname2": "MIDDLE_BTN_NORTH", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "MIDDLE_BTN_NORTH_SOUTH", + "methodname2": "MIDDLE_BTN_NORTH_SOUTH", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "MIDDLE_BTN_NORTH_EAST", + "methodname2": "MIDDLE_BTN_NORTH_EAST", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "MIDDLE_BTN_NORTH_WEST", + "methodname2": "MIDDLE_BTN_NORTH_WEST", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "MIDDLE_BTN_SOUTH_EAST", + "methodname2": "MIDDLE_BTN_SOUTH_EAST", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "MIDDLE_BTN_SOUTH_WEST", + "methodname2": "MIDDLE_BTN_SOUTH_WEST", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "PointerStyle", + "methodname": "MIDDLE_BTN_NORTH_SOUTH_WEST_EAST", + "methodname2": "MIDDLE_BTN_NORTH_SOUTH_WEST_EAST", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "pointer", + "methodname": "setPointerStyle", + "methodname2": "function setPointerStyle(windowId: number, pointerStyle: PointerStyle, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "pointer", + "methodname": "setPointerStyle", + "methodname2": "function setPointerStyle(windowId: number, pointerStyle: PointerStyle): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "pointer", + "methodname": "getPointerStyle", + "methodname2": "function getPointerStyle(windowId: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "pointer", + "methodname": "getPointerStyle", + "methodname2": "function getPointerStyle(windowId: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "pointer", + "methodname": "setPointerVisible", + "methodname2": "function setPointerVisible(visible: boolean, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "pointer", + "methodname": "setPointerVisible", + "methodname2": "function setPointerVisible(visible: boolean): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "pointer", + "methodname": "isPointerVisible", + "methodname2": "function isPointerVisible(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.pointer", + "classname": "pointer", + "methodname": "isPointerVisible", + "methodname2": "function isPointerVisible(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.multimodalInput.pointer.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Action", + "methodname": "CANCEL", + "methodname2": "CANCEL = 0", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Action", + "methodname": "DOWN", + "methodname2": "DOWN = 1", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Action", + "methodname": "MOVE", + "methodname2": "MOVE = 2", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Action", + "methodname": "UP", + "methodname2": "UP = 3", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "ToolType", + "methodname": "FINGER", + "methodname2": "FINGER = 0", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "ToolType", + "methodname": "PEN", + "methodname2": "PEN = 1", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "ToolType", + "methodname": "RUBBER", + "methodname2": "RUBBER = 2", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "ToolType", + "methodname": "BRUSH", + "methodname2": "BRUSH = 3", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "ToolType", + "methodname": "PENCIL", + "methodname2": "PENCIL = 4", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "ToolType", + "methodname": "AIRBRUSH", + "methodname2": "AIRBRUSH = 5", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "ToolType", + "methodname": "MOUSE", + "methodname2": "MOUSE = 6", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "ToolType", + "methodname": "LENS", + "methodname2": "LENS = 7", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "SourceType", + "methodname": "TOUCH_SCREEN", + "methodname2": "TOUCH_SCREEN = 0", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "SourceType", + "methodname": "PEN", + "methodname2": "PEN = 1", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "SourceType", + "methodname": "TOUCH_PAD", + "methodname2": "TOUCH_PAD = 2", + "api type": "Enum", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Touch", + "methodname": "id", + "methodname2": "id: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Touch", + "methodname": "pressedTime", + "methodname2": "pressedTime: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Touch", + "methodname": "screenX", + "methodname2": "screenX: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Touch", + "methodname": "screenY", + "methodname2": "screenY: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Touch", + "methodname": "windowX", + "methodname2": "windowX: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Touch", + "methodname": "windowY", + "methodname2": "windowY: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Touch", + "methodname": "pressure", + "methodname2": "pressure: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Touch", + "methodname": "width", + "methodname2": "width: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Touch", + "methodname": "height", + "methodname2": "height: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Touch", + "methodname": "tiltX", + "methodname2": "tiltX: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Touch", + "methodname": "tiltY", + "methodname2": "tiltY: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Touch", + "methodname": "toolX", + "methodname2": "toolX: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Touch", + "methodname": "toolY", + "methodname2": "toolY: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Touch", + "methodname": "toolWidth", + "methodname2": "toolWidth: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Touch", + "methodname": "toolHeight", + "methodname2": "toolHeight: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Touch", + "methodname": "rawX", + "methodname2": "rawX: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Touch", + "methodname": "rawY", + "methodname2": "rawY: number;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "Touch", + "methodname": "toolType", + "methodname2": "toolType: ToolType;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "TouchEvent", + "methodname": "action", + "methodname2": "action: Action;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "TouchEvent", + "methodname": "touch", + "methodname2": "touch: Touch;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "TouchEvent", + "methodname": "touches", + "methodname2": "touches: Touch[];", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.multimodalInput.touchEvent", + "classname": "TouchEvent", + "methodname": "sourceType", + "methodname2": "sourceType: SourceType;", + "api type": "Field", + "path": "\\api\\@ohos.multimodalInput.touchEvent.d.ts" + }, + { + "module name": "ohos.net.connection", + "classname": "connection", + "methodname": "getDefaultNetSync", + "methodname2": "function getDefaultNetSync(): NetHandle;", + "api type": "Method", + "path": "\\api\\@ohos.net.connection.d.ts" + }, + { + "module name": "ohos.net.connection", + "classname": "connection", + "methodname": "isDefaultNetMetered", + "methodname2": "function isDefaultNetMetered(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.connection.d.ts" + }, + { + "module name": "ohos.net.connection", + "classname": "connection", + "methodname": "isDefaultNetMetered", + "methodname2": "function isDefaultNetMetered(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.net.connection.d.ts" + }, + { + "module name": "ohos.net.connection", + "classname": "NetHandle", + "methodname": "bindSocket", + "methodname2": "bindSocket(socketParam: TCPSocket | UDPSocket, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.connection.d.ts" + }, + { + "module name": "ohos.net.connection", + "classname": "NetHandle", + "methodname": "bindSocket", + "methodname2": "bindSocket(socketParam: TCPSocket | UDPSocket): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.net.connection.d.ts" + }, + { + "module name": "ohos.net.http", + "classname": "HttpRequestOptions", + "methodname": "expectDataType", + "methodname2": "expectDataType?: HttpDataType;", + "api type": "Field", + "path": "\\api\\@ohos.net.http.d.ts" + }, + { + "module name": "ohos.net.http", + "classname": "HttpRequestOptions", + "methodname": "usingCache", + "methodname2": "usingCache?: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.net.http.d.ts" + }, + { + "module name": "ohos.net.http", + "classname": "HttpRequestOptions", + "methodname": "priority", + "methodname2": "priority?: number;", + "api type": "Field", + "path": "\\api\\@ohos.net.http.d.ts" + }, + { + "module name": "ohos.net.http", + "classname": "HttpRequestOptions", + "methodname": "usingProtocol", + "methodname2": "usingProtocol?: HttpProtocol;", + "api type": "Field", + "path": "\\api\\@ohos.net.http.d.ts" + }, + { + "module name": "ohos.net.http", + "classname": "HttpProtocol", + "methodname": "HTTP1_1", + "methodname2": "HTTP1_1", + "api type": "Enum", + "path": "\\api\\@ohos.net.http.d.ts" + }, + { + "module name": "ohos.net.http", + "classname": "HttpProtocol", + "methodname": "HTTP2", + "methodname2": "HTTP2", + "api type": "Enum", + "path": "\\api\\@ohos.net.http.d.ts" + }, + { + "module name": "ohos.net.http", + "classname": "HttpDataType", + "methodname": "STRING", + "methodname2": "STRING", + "api type": "Enum", + "path": "\\api\\@ohos.net.http.d.ts" + }, + { + "module name": "ohos.net.http", + "classname": "HttpDataType", + "methodname": "OBJECT", + "methodname2": "OBJECT = 1", + "api type": "Enum", + "path": "\\api\\@ohos.net.http.d.ts" + }, + { + "module name": "ohos.net.http", + "classname": "HttpDataType", + "methodname": "ARRAY_BUFFER", + "methodname2": "ARRAY_BUFFER = 2", + "api type": "Enum", + "path": "\\api\\@ohos.net.http.d.ts" + }, + { + "module name": "ohos.net.http", + "classname": "HttpResponse", + "methodname": "resultType", + "methodname2": "resultType: HttpDataType;", + "api type": "Field", + "path": "\\api\\@ohos.net.http.d.ts" + }, + { + "module name": "ohos.net.http", + "classname": "http", + "methodname": "createHttpResponseCache", + "methodname2": "function createHttpResponseCache(cacheSize?: number): HttpResponseCache;", + "api type": "Method", + "path": "\\api\\@ohos.net.http.d.ts" + }, + { + "module name": "ohos.net.http", + "classname": "HttpResponseCache", + "methodname": "flush", + "methodname2": "flush(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.http.d.ts" + }, + { + "module name": "ohos.net.http", + "classname": "HttpResponseCache", + "methodname": "flush", + "methodname2": "flush(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.net.http.d.ts" + }, + { + "module name": "ohos.net.http", + "classname": "HttpResponseCache", + "methodname": "delete", + "methodname2": "delete(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.http.d.ts" + }, + { + "module name": "ohos.net.http", + "classname": "HttpResponseCache", + "methodname": "delete", + "methodname2": "delete(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.net.http.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "socket", + "methodname": "constructTLSSocketInstance", + "methodname2": "function constructTLSSocketInstance(): TLSSocket;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "bind", + "methodname2": "bind(address: NetAddress, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "bind", + "methodname2": "bind(address: NetAddress): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "getRemoteAddress", + "methodname2": "getRemoteAddress(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "getRemoteAddress", + "methodname2": "getRemoteAddress(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "getState", + "methodname2": "getState(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "getState", + "methodname2": "getState(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "setExtraOptions", + "methodname2": "setExtraOptions(options: TCPExtraOptions, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "setExtraOptions", + "methodname2": "setExtraOptions(options: TCPExtraOptions): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "on_message", + "methodname2": "on(type: 'message', callback: Callback<{message: ArrayBuffer, remoteInfo: SocketRemoteInfo}>): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "off_message", + "methodname2": "off(type: 'message', callback?: Callback<{message: ArrayBuffer, remoteInfo: SocketRemoteInfo}>): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "on_connect", + "methodname2": "on(type: 'connect' | 'close', callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "on_close", + "methodname2": "on(type: 'connect' | 'close', callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "off_connect", + "methodname2": "off(type: 'connect' | 'close', callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "off_close", + "methodname2": "off(type: 'connect' | 'close', callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "on_error", + "methodname2": "on(type: 'error', callback: ErrorCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "off_error", + "methodname2": "off(type: 'error', callback?: ErrorCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "getCertificate", + "methodname2": "getCertificate(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "getCertificate", + "methodname2": "getCertificate(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "getRemoteCertificate", + "methodname2": "getRemoteCertificate(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "getRemoteCertificate", + "methodname2": "getRemoteCertificate(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "getProtocol", + "methodname2": "getProtocol(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "getProtocol", + "methodname2": "getProtocol(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "getCipherSuite", + "methodname2": "getCipherSuite(callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "getCipherSuite", + "methodname2": "getCipherSuite(): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "getSignatureAlgorithms", + "methodname2": "getSignatureAlgorithms(callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "getSignatureAlgorithms", + "methodname2": "getSignatureAlgorithms(): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "connect", + "methodname2": "connect(options: TLSConnectOptions, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "connect", + "methodname2": "connect(options: TLSConnectOptions): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "send", + "methodname2": "send(data: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "send", + "methodname2": "send(data: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "close", + "methodname2": "close(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSocket", + "methodname": "close", + "methodname2": "close(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSecureOptions", + "methodname": "ca", + "methodname2": "ca: string | Array;", + "api type": "Field", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSecureOptions", + "methodname": "cert", + "methodname2": "cert: string;", + "api type": "Field", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSecureOptions", + "methodname": "key", + "methodname2": "key: string;", + "api type": "Field", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSecureOptions", + "methodname": "passwd", + "methodname2": "passwd?: string;", + "api type": "Field", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSecureOptions", + "methodname": "protocols", + "methodname2": "protocols?: Protocol | Array;", + "api type": "Field", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSecureOptions", + "methodname": "useRemoteCipherPrefer", + "methodname2": "useRemoteCipherPrefer?: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSecureOptions", + "methodname": "signatureAlgorithms", + "methodname2": "signatureAlgorithms?: string;", + "api type": "Field", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSSecureOptions", + "methodname": "cipherSuite", + "methodname2": "cipherSuite?: string;", + "api type": "Field", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSConnectOptions", + "methodname": "address", + "methodname2": "address: NetAddress;", + "api type": "Field", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSConnectOptions", + "methodname": "secureOptions", + "methodname2": "secureOptions: TLSSecureOptions;", + "api type": "Field", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "TLSConnectOptions", + "methodname": "ALPNProtocols", + "methodname2": "ALPNProtocols?: Array;", + "api type": "Field", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "Protocol", + "methodname": "TLSv12", + "methodname2": "TLSv12 = \"TLSv1.2\"", + "api type": "Enum", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.net.socket", + "classname": "Protocol", + "methodname": "TLSv13", + "methodname2": "TLSv13 = \"TLSv1.3\"", + "api type": "Enum", + "path": "\\api\\@ohos.net.socket.d.ts" + }, + { + "module name": "ohos.nfc.cardEmulation", + "classname": "FeatureType", + "methodname": "HCE", + "methodname2": "HCE = 0", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.cardEmulation.d.ts" + }, + { + "module name": "ohos.nfc.cardEmulation", + "classname": "FeatureType", + "methodname": "UICC", + "methodname2": "UICC = 1", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.cardEmulation.d.ts" + }, + { + "module name": "ohos.nfc.cardEmulation", + "classname": "FeatureType", + "methodname": "ESE", + "methodname2": "ESE = 2", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.cardEmulation.d.ts" + }, + { + "module name": "ohos.nfc.cardEmulation", + "classname": "cardEmulation", + "methodname": "isSupported", + "methodname2": "function isSupported(feature: number): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.nfc.cardEmulation.d.ts" + }, + { + "module name": "ohos.nfc.cardEmulation", + "classname": "HceService", + "methodname": "startHCE", + "methodname2": "startHCE(aidList: string[]): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.nfc.cardEmulation.d.ts" + }, + { + "module name": "ohos.nfc.cardEmulation", + "classname": "HceService", + "methodname": "stopHCE", + "methodname2": "stopHCE(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.nfc.cardEmulation.d.ts" + }, + { + "module name": "ohos.nfc.cardEmulation", + "classname": "HceService", + "methodname": "on_hceCmd", + "methodname2": "on(type: \"hceCmd\", callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.nfc.cardEmulation.d.ts" + }, + { + "module name": "ohos.nfc.cardEmulation", + "classname": "HceService", + "methodname": "sendResponse", + "methodname2": "sendResponse(responseApdu: number[]): void;", + "api type": "Method", + "path": "\\api\\@ohos.nfc.cardEmulation.d.ts" + }, + { + "module name": "ohos.nfc.controller", + "classname": "NfcState", + "methodname": "STATE_OFF", + "methodname2": "STATE_OFF = 1", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.controller.d.ts" + }, + { + "module name": "ohos.nfc.controller", + "classname": "NfcState", + "methodname": "STATE_TURNING_ON", + "methodname2": "STATE_TURNING_ON = 2", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.controller.d.ts" + }, + { + "module name": "ohos.nfc.controller", + "classname": "NfcState", + "methodname": "STATE_ON", + "methodname2": "STATE_ON = 3", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.controller.d.ts" + }, + { + "module name": "ohos.nfc.controller", + "classname": "NfcState", + "methodname": "STATE_TURNING_OFF", + "methodname2": "STATE_TURNING_OFF = 4", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.controller.d.ts" + }, + { + "module name": "ohos.nfc.controller", + "classname": "nfcController", + "methodname": "isNfcAvailable", + "methodname2": "function isNfcAvailable(): boolean", + "api type": "Method", + "path": "\\api\\@ohos.nfc.controller.d.ts" + }, + { + "module name": "ohos.nfc.controller", + "classname": "nfcController", + "methodname": "on_nfcStateChange", + "methodname2": "function on(type: \"nfcStateChange\", callback: Callback): void", + "api type": "Method", + "path": "\\api\\@ohos.nfc.controller.d.ts" + }, + { + "module name": "ohos.nfc.controller", + "classname": "nfcController", + "methodname": "off_nfcStateChange", + "methodname2": "function off(type: \"nfcStateChange\", callback?: Callback): void", + "api type": "Method", + "path": "\\api\\@ohos.nfc.controller.d.ts" + }, + { + "module name": "ohos.nfc.controller", + "classname": "nfcController", + "methodname": "openNfc", + "methodname2": "function openNfc(): boolean", + "api type": "Method", + "path": "\\api\\@ohos.nfc.controller.d.ts" + }, + { + "module name": "ohos.nfc.controller", + "classname": "nfcController", + "methodname": "closeNfc", + "methodname2": "function closeNfc(): boolean", + "api type": "Method", + "path": "\\api\\@ohos.nfc.controller.d.ts" + }, + { + "module name": "ohos.nfc.controller", + "classname": "nfcController", + "methodname": "isNfcOpen", + "methodname2": "function isNfcOpen(): boolean", + "api type": "Method", + "path": "\\api\\@ohos.nfc.controller.d.ts" + }, + { + "module name": "ohos.nfc.controller", + "classname": "nfcController", + "methodname": "getNfcState", + "methodname2": "function getNfcState(): NfcState", + "api type": "Method", + "path": "\\api\\@ohos.nfc.controller.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "tag", + "methodname": "NFC_A", + "methodname2": "const NFC_A = 1;", + "api type": "Constant", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "tag", + "methodname": "NFC_B", + "methodname2": "const NFC_B = 2;", + "api type": "Constant", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "tag", + "methodname": "ISO_DEP", + "methodname2": "const ISO_DEP = 3;", + "api type": "Constant", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "tag", + "methodname": "NFC_F", + "methodname2": "const NFC_F = 4;", + "api type": "Constant", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "tag", + "methodname": "NFC_V", + "methodname2": "const NFC_V = 5;", + "api type": "Constant", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "tag", + "methodname": "NDEF", + "methodname2": "const NDEF = 6;", + "api type": "Constant", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "tag", + "methodname": "NDEF_FORMATABLE", + "methodname2": "const NDEF_FORMATABLE = 7;", + "api type": "Constant", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "tag", + "methodname": "MIFARE_CLASSIC", + "methodname2": "const MIFARE_CLASSIC = 8;", + "api type": "Constant", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "tag", + "methodname": "MIFARE_ULTRALIGHT", + "methodname2": "const MIFARE_ULTRALIGHT = 9;", + "api type": "Constant", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "TnfType", + "methodname": "TNF_EMPTY", + "methodname2": "TNF_EMPTY = 0x0", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "TnfType", + "methodname": "TNF_WELL_KNOWN", + "methodname2": "TNF_WELL_KNOWN = 0x1", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "TnfType", + "methodname": "TNF_MEDIA", + "methodname2": "TNF_MEDIA = 0x2", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "TnfType", + "methodname": "TNF_ABSOLUTE_URI", + "methodname2": "TNF_ABSOLUTE_URI = 0x3", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "TnfType", + "methodname": "TNF_EXT_APP", + "methodname2": "TNF_EXT_APP = 0x4", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "TnfType", + "methodname": "TNF_UNKNOWN", + "methodname2": "TNF_UNKNOWN = 0x5", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "TnfType", + "methodname": "TNF_UNCHANGED", + "methodname2": "TNF_UNCHANGED = 0x6", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "NfcForumType", + "methodname": "NFC_FORUM_TYPE_1", + "methodname2": "NFC_FORUM_TYPE_1 = 1", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "NfcForumType", + "methodname": "NFC_FORUM_TYPE_2", + "methodname2": "NFC_FORUM_TYPE_2 = 2", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "NfcForumType", + "methodname": "NFC_FORUM_TYPE_3", + "methodname2": "NFC_FORUM_TYPE_3 = 3", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "NfcForumType", + "methodname": "NFC_FORUM_TYPE_4", + "methodname2": "NFC_FORUM_TYPE_4 = 4", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "NfcForumType", + "methodname": "MIFARE_CLASSIC", + "methodname2": "MIFARE_CLASSIC = 101", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "tag", + "methodname": "RTD_TEXT", + "methodname2": "const RTD_TEXT: number[];", + "api type": "Constant", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "tag", + "methodname": "RTD_URI", + "methodname2": "const RTD_URI: number[];", + "api type": "Constant", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "MifareClassicType", + "methodname": "TYPE_UNKNOWN", + "methodname2": "TYPE_UNKNOWN = 0", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "MifareClassicType", + "methodname": "TYPE_CLASSIC", + "methodname2": "TYPE_CLASSIC = 1", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "MifareClassicType", + "methodname": "TYPE_PLUS", + "methodname2": "TYPE_PLUS = 2", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "MifareClassicType", + "methodname": "TYPE_PRO", + "methodname2": "TYPE_PRO = 3", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "MifareClassicSize", + "methodname": "MC_SIZE_MINI", + "methodname2": "MC_SIZE_MINI = 320", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "MifareClassicSize", + "methodname": "MC_SIZE_1K", + "methodname2": "MC_SIZE_1K = 1024", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "MifareClassicSize", + "methodname": "MC_SIZE_2K", + "methodname2": "MC_SIZE_2K = 2048", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "MifareClassicSize", + "methodname": "MC_SIZE_4K", + "methodname2": "MC_SIZE_4K = 4096", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "MifareUltralightType", + "methodname": "TYPE_UNKNOWN", + "methodname2": "TYPE_UNKNOWN = 0", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "MifareUltralightType", + "methodname": "TYPE_ULTRALIGHT", + "methodname2": "TYPE_ULTRALIGHT = 1", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "MifareUltralightType", + "methodname": "TYPE_ULTRALIGHT_C", + "methodname2": "TYPE_ULTRALIGHT_C = 2", + "api type": "Enum", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "tag", + "methodname": "getNfcATag", + "methodname2": "function getNfcATag(tagInfo: TagInfo): NfcATag", + "api type": "Method", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "tag", + "methodname": "getNfcBTag", + "methodname2": "function getNfcBTag(tagInfo: TagInfo): NfcBTag", + "api type": "Method", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "tag", + "methodname": "getNfcFTag", + "methodname2": "function getNfcFTag(tagInfo: TagInfo): NfcFTag", + "api type": "Method", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "tag", + "methodname": "getNfcVTag", + "methodname2": "function getNfcVTag(tagInfo: TagInfo): NfcVTag", + "api type": "Method", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "tag", + "methodname": "getIsoDep", + "methodname2": "function getIsoDep(tagInfo: TagInfo): IsoDepTag", + "api type": "Method", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "tag", + "methodname": "getNdef", + "methodname2": "function getNdef(tagInfo: TagInfo): NdefTag", + "api type": "Method", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "tag", + "methodname": "getMifareClassic", + "methodname2": "function getMifareClassic(tagInfo: TagInfo): MifareClassicTag", + "api type": "Method", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "tag", + "methodname": "getMifareUltralight", + "methodname2": "function getMifareUltralight(tagInfo: TagInfo): MifareUltralightTag", + "api type": "Method", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "tag", + "methodname": "getNdefFormatable", + "methodname2": "function getNdefFormatable(tagInfo: TagInfo): NdefFormatableTag", + "api type": "Method", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "tag", + "methodname": "getTagInfo", + "methodname2": "function getTagInfo(want: Want): TagInfo", + "api type": "Method", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "TagInfo", + "methodname": "uid", + "methodname2": "uid: number[];", + "api type": "Field", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "TagInfo", + "methodname": "technology", + "methodname2": "technology: number[];", + "api type": "Field", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "TagInfo", + "methodname": "supportedProfiles", + "methodname2": "supportedProfiles: number[];", + "api type": "Field", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "NdefRecord", + "methodname": "tnf", + "methodname2": "tnf: number;", + "api type": "Field", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "NdefRecord", + "methodname": "rtdType", + "methodname2": "rtdType: number[];", + "api type": "Field", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "NdefRecord", + "methodname": "id", + "methodname2": "id: number[];", + "api type": "Field", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "NdefRecord", + "methodname": "payload", + "methodname2": "payload: number[];", + "api type": "Field", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "ndef", + "methodname": "makeUriRecord", + "methodname2": "function makeUriRecord(uri: string): NdefRecord;", + "api type": "Method", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "ndef", + "methodname": "makeTextRecord", + "methodname2": "function makeTextRecord(text: string, locale: string): NdefRecord;", + "api type": "Method", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "ndef", + "methodname": "makeMimeRecord", + "methodname2": "function makeMimeRecord(mimeType: string, mimeData: number[]): NdefRecord;", + "api type": "Method", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "ndef", + "methodname": "makeExternalRecord", + "methodname2": "function makeExternalRecord(domainName: string, type: string, externalData: number[]): NdefRecord;", + "api type": "Method", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "ndef", + "methodname": "createNdefMessage", + "methodname2": "function createNdefMessage(data: number[]): NdefMessage;", + "api type": "Method", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "ndef", + "methodname": "createNdefMessage", + "methodname2": "function createNdefMessage(ndefRecords: NdefRecord[]): NdefMessage;", + "api type": "Method", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.nfc.tag", + "classname": "ndef", + "methodname": "messageToBytes", + "methodname2": "function messageToBytes(ndefMessage: NdefMessage): number[];", + "api type": "Method", + "path": "\\api\\@ohos.nfc.tag.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "pasteboard", + "methodname": "MAX_RECORD_NUM", + "methodname2": "const MAX_RECORD_NUM: number;", + "api type": "Constant", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "pasteboard", + "methodname": "MIMETYPE_TEXT_HTML", + "methodname2": "const MIMETYPE_TEXT_HTML: string;", + "api type": "Constant", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "pasteboard", + "methodname": "MIMETYPE_TEXT_WANT", + "methodname2": "const MIMETYPE_TEXT_WANT: string;", + "api type": "Constant", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "pasteboard", + "methodname": "MIMETYPE_TEXT_PLAIN", + "methodname2": "const MIMETYPE_TEXT_PLAIN: string;", + "api type": "Constant", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "pasteboard", + "methodname": "MIMETYPE_TEXT_URI", + "methodname2": "const MIMETYPE_TEXT_URI: string;", + "api type": "Constant", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "pasteboard", + "methodname": "MIMETYPE_PIXELMAP", + "methodname2": "const MIMETYPE_PIXELMAP: string;", + "api type": "Constant", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "pasteboard", + "methodname": "createHtmlData", + "methodname2": "function createHtmlData(htmlText: string): PasteData;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "pasteboard", + "methodname": "createWantData", + "methodname2": "function createWantData(want: Want): PasteData;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "pasteboard", + "methodname": "createPlainTextData", + "methodname2": "function createPlainTextData(text: string): PasteData;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "pasteboard", + "methodname": "createUriData", + "methodname2": "function createUriData(uri: string): PasteData;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "pasteboard", + "methodname": "createData", + "methodname2": "function createData(mimeType: string, value: ValueType): PasteData;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "pasteboard", + "methodname": "createHtmlTextRecord", + "methodname2": "function createHtmlTextRecord(htmlText: string): PasteDataRecord;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "pasteboard", + "methodname": "createWantRecord", + "methodname2": "function createWantRecord(want: Want): PasteDataRecord;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "pasteboard", + "methodname": "createPlainTextRecord", + "methodname2": "function createPlainTextRecord(text: string): PasteDataRecord;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "pasteboard", + "methodname": "createUriRecord", + "methodname2": "function createUriRecord(uri: string): PasteDataRecord;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "pasteboard", + "methodname": "createRecord", + "methodname2": "function createRecord(mimeType: string, value: ValueType): PasteDataRecord;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "pasteboard", + "methodname": "getSystemPasteboard", + "methodname2": "function getSystemPasteboard(): SystemPasteboard;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "ShareOption", + "methodname": "InApp", + "methodname2": "InApp", + "api type": "Enum", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "ShareOption", + "methodname": "LocalDevice", + "methodname2": "LocalDevice", + "api type": "Enum", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "ShareOption", + "methodname": "CrossDevice", + "methodname2": "CrossDevice", + "api type": "Enum", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteDataProperty", + "methodname": "additions", + "methodname2": "additions: {\n [key: string]: object\n }", + "api type": "Field", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteDataProperty", + "methodname": "mimeTypes", + "methodname2": "readonly mimeTypes: Array;", + "api type": "Field", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteDataProperty", + "methodname": "tag", + "methodname2": "tag: string;", + "api type": "Field", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteDataProperty", + "methodname": "timestamp", + "methodname2": "readonly timestamp: number;", + "api type": "Field", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteDataProperty", + "methodname": "localOnly", + "methodname2": "localOnly: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteDataProperty", + "methodname": "shareOption", + "methodname2": "shareOption: ShareOption;", + "api type": "Field", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteDataRecord", + "methodname": "htmlText", + "methodname2": "htmlText: string;", + "api type": "Field", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteDataRecord", + "methodname": "want", + "methodname2": "want: Want;", + "api type": "Field", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteDataRecord", + "methodname": "mimeType", + "methodname2": "mimeType: string;", + "api type": "Field", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteDataRecord", + "methodname": "plainText", + "methodname2": "plainText: string;", + "api type": "Field", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteDataRecord", + "methodname": "uri", + "methodname2": "uri: string;", + "api type": "Field", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteDataRecord", + "methodname": "pixelMap", + "methodname2": "pixelMap: image.PixelMap;", + "api type": "Field", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteDataRecord", + "methodname": "data", + "methodname2": "data: {\n [mimeType: string]: ArrayBuffer\n }", + "api type": "Field", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteDataRecord", + "methodname": "convertToText", + "methodname2": "convertToText(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteDataRecord", + "methodname": "convertToText", + "methodname2": "convertToText(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteDataRecord", + "methodname": "convertToTextV9", + "methodname2": "convertToTextV9(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteDataRecord", + "methodname": "convertToTextV9", + "methodname2": "convertToTextV9(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "addHtmlRecord", + "methodname2": "addHtmlRecord(htmlText: string): void;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "addWantRecord", + "methodname2": "addWantRecord(want: Want): void;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "addRecord", + "methodname2": "addRecord(record: PasteDataRecord): void;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "addTextRecord", + "methodname2": "addTextRecord(text: string): void;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "addUriRecord", + "methodname2": "addUriRecord(uri: string): void;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "addRecord", + "methodname2": "addRecord(mimeType: string, value: ValueType): void;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "getMimeTypes", + "methodname2": "getMimeTypes(): Array;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "getPrimaryHtml", + "methodname2": "getPrimaryHtml(): string;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "getPrimaryWant", + "methodname2": "getPrimaryWant(): Want;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "getPrimaryMimeType", + "methodname2": "getPrimaryMimeType(): string;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "getPrimaryText", + "methodname2": "getPrimaryText(): string;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "getPrimaryUri", + "methodname2": "getPrimaryUri(): string;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "getPrimaryPixelMap", + "methodname2": "getPrimaryPixelMap(): image.PixelMap;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "getProperty", + "methodname2": "getProperty(): PasteDataProperty;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "setProperty", + "methodname2": "setProperty(property: PasteDataProperty): void;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "getRecordAt", + "methodname2": "getRecordAt(index: number): PasteDataRecord;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "getRecord", + "methodname2": "getRecord(index: number): PasteDataRecord;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "getRecordCount", + "methodname2": "getRecordCount(): number;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "getTag", + "methodname2": "getTag(): string;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "hasMimeType", + "methodname2": "hasMimeType(mimeType: string): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "hasType", + "methodname2": "hasType(mimeType: string): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "removeRecordAt", + "methodname2": "removeRecordAt(index: number): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "removeRecord", + "methodname2": "removeRecord(index: number): void;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "replaceRecordAt", + "methodname2": "replaceRecordAt(index: number, record: PasteDataRecord): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "PasteData", + "methodname": "replaceRecord", + "methodname2": "replaceRecord(index: number, record: PasteDataRecord): void;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "SystemPasteboard", + "methodname": "on_update", + "methodname2": "on(type: 'update', callback: () => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "SystemPasteboard", + "methodname": "off_update", + "methodname2": "off(type: 'update', callback?: () => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "SystemPasteboard", + "methodname": "clear", + "methodname2": "clear(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "SystemPasteboard", + "methodname": "clear", + "methodname2": "clear(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "SystemPasteboard", + "methodname": "clearData", + "methodname2": "clearData(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "SystemPasteboard", + "methodname": "clearData", + "methodname2": "clearData(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "SystemPasteboard", + "methodname": "getPasteData", + "methodname2": "getPasteData(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "SystemPasteboard", + "methodname": "getPasteData", + "methodname2": "getPasteData(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "SystemPasteboard", + "methodname": "getData", + "methodname2": "getData(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "SystemPasteboard", + "methodname": "getData", + "methodname2": "getData(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "SystemPasteboard", + "methodname": "hasPasteData", + "methodname2": "hasPasteData(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "SystemPasteboard", + "methodname": "hasPasteData", + "methodname2": "hasPasteData(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "SystemPasteboard", + "methodname": "hasData", + "methodname2": "hasData(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "SystemPasteboard", + "methodname": "hasData", + "methodname2": "hasData(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "SystemPasteboard", + "methodname": "setPasteData", + "methodname2": "setPasteData(data: PasteData, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "SystemPasteboard", + "methodname": "setPasteData", + "methodname2": "setPasteData(data: PasteData): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "SystemPasteboard", + "methodname": "setData", + "methodname2": "setData(data: PasteData, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.pasteboard", + "classname": "SystemPasteboard", + "methodname": "setData", + "methodname2": "setData(data: PasteData): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.pasteboard.d.ts" + }, + { + "module name": "ohos.resourceschedule.backgroundTaskManager", + "classname": "DelaySuspendInfo", + "methodname": "requestId", + "methodname2": "requestId: number;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.resourceschedule.backgroundTaskManager", + "classname": "DelaySuspendInfo", + "methodname": "actualDelayTime", + "methodname2": "actualDelayTime: number;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.resourceschedule.backgroundTaskManager", + "classname": "backgroundTaskManager", + "methodname": "cancelSuspendDelay", + "methodname2": "function cancelSuspendDelay(requestId: number): void;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.resourceschedule.backgroundTaskManager", + "classname": "backgroundTaskManager", + "methodname": "getRemainingDelayTime", + "methodname2": "function getRemainingDelayTime(requestId: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.resourceschedule.backgroundTaskManager", + "classname": "backgroundTaskManager", + "methodname": "getRemainingDelayTime", + "methodname2": "function getRemainingDelayTime(requestId: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.resourceschedule.backgroundTaskManager", + "classname": "backgroundTaskManager", + "methodname": "requestSuspendDelay", + "methodname2": "function requestSuspendDelay(reason: string, callback: Callback): DelaySuspendInfo;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.resourceschedule.backgroundTaskManager", + "classname": "backgroundTaskManager", + "methodname": "startBackgroundRunning", + "methodname2": "function startBackgroundRunning(context: Context, bgMode: BackgroundMode, wantAgent: WantAgent, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.resourceschedule.backgroundTaskManager", + "classname": "backgroundTaskManager", + "methodname": "startBackgroundRunning", + "methodname2": "function startBackgroundRunning(context: Context, bgMode: BackgroundMode, wantAgent: WantAgent): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.resourceschedule.backgroundTaskManager", + "classname": "backgroundTaskManager", + "methodname": "stopBackgroundRunning", + "methodname2": "function stopBackgroundRunning(context: Context, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.resourceschedule.backgroundTaskManager", + "classname": "backgroundTaskManager", + "methodname": "stopBackgroundRunning", + "methodname2": "function stopBackgroundRunning(context: Context): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.resourceschedule.backgroundTaskManager", + "classname": "BackgroundMode", + "methodname": "DATA_TRANSFER", + "methodname2": "DATA_TRANSFER = 1", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.resourceschedule.backgroundTaskManager", + "classname": "BackgroundMode", + "methodname": "AUDIO_PLAYBACK", + "methodname2": "AUDIO_PLAYBACK = 2", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.resourceschedule.backgroundTaskManager", + "classname": "BackgroundMode", + "methodname": "AUDIO_RECORDING", + "methodname2": "AUDIO_RECORDING = 3", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.resourceschedule.backgroundTaskManager", + "classname": "BackgroundMode", + "methodname": "LOCATION", + "methodname2": "LOCATION = 4", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.resourceschedule.backgroundTaskManager", + "classname": "BackgroundMode", + "methodname": "BLUETOOTH_INTERACTION", + "methodname2": "BLUETOOTH_INTERACTION = 5", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.resourceschedule.backgroundTaskManager", + "classname": "BackgroundMode", + "methodname": "MULTI_DEVICE_CONNECTION", + "methodname2": "MULTI_DEVICE_CONNECTION = 6", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.resourceschedule.backgroundTaskManager", + "classname": "BackgroundMode", + "methodname": "TASK_KEEPING", + "methodname2": "TASK_KEEPING = 9", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.backgroundTaskManager.d.ts" + }, + { + "module name": "ohos.resourceschedule.usageStatistics", + "classname": "BundleEvents", + "methodname": "appGroup", + "methodname2": "appGroup?: number;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.usageStatistics.d.ts" + }, + { + "module name": "ohos.resourceschedule.usageStatistics", + "classname": "BundleEvents", + "methodname": "bundleName", + "methodname2": "bundleName?: string;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.usageStatistics.d.ts" + }, + { + "module name": "ohos.resourceschedule.usageStatistics", + "classname": "BundleEvents", + "methodname": "indexOfLink", + "methodname2": "indexOfLink?: string;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.usageStatistics.d.ts" + }, + { + "module name": "ohos.resourceschedule.usageStatistics", + "classname": "BundleEvents", + "methodname": "nameOfClass", + "methodname2": "nameOfClass?: string;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.usageStatistics.d.ts" + }, + { + "module name": "ohos.resourceschedule.usageStatistics", + "classname": "BundleEvents", + "methodname": "eventOccurredTime", + "methodname2": "eventOccurredTime?: number;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.usageStatistics.d.ts" + }, + { + "module name": "ohos.resourceschedule.usageStatistics", + "classname": "BundleEvents", + "methodname": "eventId", + "methodname2": "eventId?: number;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.usageStatistics.d.ts" + }, + { + "module name": "ohos.resourceschedule.usageStatistics", + "classname": "usageStatistics", + "methodname": "isIdleState", + "methodname2": "function isIdleState(bundleName: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.usageStatistics.d.ts" + }, + { + "module name": "ohos.resourceschedule.usageStatistics", + "classname": "usageStatistics", + "methodname": "isIdleState", + "methodname2": "function isIdleState(bundleName: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.usageStatistics.d.ts" + }, + { + "module name": "ohos.resourceschedule.usageStatistics", + "classname": "usageStatistics", + "methodname": "queryAppGroup", + "methodname2": "function queryAppGroup(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.usageStatistics.d.ts" + }, + { + "module name": "ohos.resourceschedule.usageStatistics", + "classname": "usageStatistics", + "methodname": "queryAppGroup", + "methodname2": "function queryAppGroup(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.usageStatistics.d.ts" + }, + { + "module name": "ohos.resourceschedule.usageStatistics", + "classname": "usageStatistics", + "methodname": "queryCurrentBundleEvents", + "methodname2": "function queryCurrentBundleEvents(begin: number, end: number, callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.usageStatistics.d.ts" + }, + { + "module name": "ohos.resourceschedule.usageStatistics", + "classname": "usageStatistics", + "methodname": "queryCurrentBundleEvents", + "methodname2": "function queryCurrentBundleEvents(begin: number, end: number): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.usageStatistics.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "WorkInfo", + "methodname": "workId", + "methodname2": "workId: number;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "WorkInfo", + "methodname": "bundleName", + "methodname2": "bundleName: string;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "WorkInfo", + "methodname": "abilityName", + "methodname2": "abilityName: string;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "WorkInfo", + "methodname": "isPersisted", + "methodname2": "isPersisted?: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "WorkInfo", + "methodname": "networkType", + "methodname2": "networkType?: NetworkType;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "WorkInfo", + "methodname": "isCharging", + "methodname2": "isCharging?: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "WorkInfo", + "methodname": "chargerType", + "methodname2": "chargerType?: ChargingType;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "WorkInfo", + "methodname": "batteryLevel", + "methodname2": "batteryLevel?: number;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "WorkInfo", + "methodname": "batteryStatus", + "methodname2": "batteryStatus?: BatteryStatus;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "WorkInfo", + "methodname": "storageRequest", + "methodname2": "storageRequest?: StorageRequest;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "WorkInfo", + "methodname": "repeatCycleTime", + "methodname2": "repeatCycleTime?: number;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "WorkInfo", + "methodname": "isRepeat", + "methodname2": "isRepeat?: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "WorkInfo", + "methodname": "repeatCount", + "methodname2": "repeatCount?: number;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "WorkInfo", + "methodname": "isDeepIdle", + "methodname2": "isDeepIdle?: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "WorkInfo", + "methodname": "idleWaitTime", + "methodname2": "idleWaitTime?: number;", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "WorkInfo", + "methodname": "parameters", + "methodname2": "parameters?: {[key: string]: any};", + "api type": "Field", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "workScheduler", + "methodname": "startWork", + "methodname2": "function startWork(work: WorkInfo): void;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "workScheduler", + "methodname": "stopWork", + "methodname2": "function stopWork(work: WorkInfo, needCancel?: boolean): void;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "workScheduler", + "methodname": "getWorkStatus", + "methodname2": "function getWorkStatus(workId: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "workScheduler", + "methodname": "getWorkStatus", + "methodname2": "function getWorkStatus(workId: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "workScheduler", + "methodname": "obtainAllWorks", + "methodname2": "function obtainAllWorks(callback: AsyncCallback): Array;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "workScheduler", + "methodname": "obtainAllWorks", + "methodname2": "function obtainAllWorks(): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "workScheduler", + "methodname": "stopAndClearWorks", + "methodname2": "function stopAndClearWorks(): void;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "workScheduler", + "methodname": "isLastWorkTimeOut", + "methodname2": "function isLastWorkTimeOut(workId: number, callback: AsyncCallback): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "workScheduler", + "methodname": "isLastWorkTimeOut", + "methodname2": "function isLastWorkTimeOut(workId: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "NetworkType", + "methodname": "NETWORK_TYPE_ANY", + "methodname2": "NETWORK_TYPE_ANY = 0", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "NetworkType", + "methodname": "NETWORK_TYPE_MOBILE", + "methodname2": "NETWORK_TYPE_MOBILE", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "NetworkType", + "methodname": "NETWORK_TYPE_WIFI", + "methodname2": "NETWORK_TYPE_WIFI", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "NetworkType", + "methodname": "NETWORK_TYPE_BLUETOOTH", + "methodname2": "NETWORK_TYPE_BLUETOOTH", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "NetworkType", + "methodname": "NETWORK_TYPE_WIFI_P2P", + "methodname2": "NETWORK_TYPE_WIFI_P2P", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "NetworkType", + "methodname": "NETWORK_TYPE_ETHERNET", + "methodname2": "NETWORK_TYPE_ETHERNET", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "ChargingType", + "methodname": "CHARGING_PLUGGED_ANY", + "methodname2": "CHARGING_PLUGGED_ANY = 0", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "ChargingType", + "methodname": "CHARGING_PLUGGED_AC", + "methodname2": "CHARGING_PLUGGED_AC", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "ChargingType", + "methodname": "CHARGING_PLUGGED_USB", + "methodname2": "CHARGING_PLUGGED_USB", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "ChargingType", + "methodname": "CHARGING_PLUGGED_WIRELESS", + "methodname2": "CHARGING_PLUGGED_WIRELESS", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "BatteryStatus", + "methodname": "BATTERY_STATUS_LOW", + "methodname2": "BATTERY_STATUS_LOW = 0", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "BatteryStatus", + "methodname": "BATTERY_STATUS_OKAY", + "methodname2": "BATTERY_STATUS_OKAY", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "BatteryStatus", + "methodname": "BATTERY_STATUS_LOW_OR_OKAY", + "methodname2": "BATTERY_STATUS_LOW_OR_OKAY", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "StorageRequest", + "methodname": "STORAGE_LEVEL_LOW", + "methodname2": "STORAGE_LEVEL_LOW = 0", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "StorageRequest", + "methodname": "STORAGE_LEVEL_OKAY", + "methodname2": "STORAGE_LEVEL_OKAY", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.resourceschedule.workScheduler", + "classname": "StorageRequest", + "methodname": "STORAGE_LEVEL_LOW_OR_OKAY", + "methodname2": "STORAGE_LEVEL_LOW_OR_OKAY", + "api type": "Enum", + "path": "\\api\\@ohos.resourceschedule.workScheduler.d.ts" + }, + { + "module name": "ohos.screenLock", + "classname": "screenLock", + "methodname": "isScreenLocked", + "methodname2": "function isScreenLocked(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.screenLock.d.ts" + }, + { + "module name": "ohos.screenLock", + "classname": "screenLock", + "methodname": "isScreenLocked", + "methodname2": "function isScreenLocked(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.screenLock.d.ts" + }, + { + "module name": "ohos.screenLock", + "classname": "screenLock", + "methodname": "isLocked", + "methodname2": "function isLocked(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.screenLock.d.ts" + }, + { + "module name": "ohos.screenLock", + "classname": "screenLock", + "methodname": "isSecureMode", + "methodname2": "function isSecureMode(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.screenLock.d.ts" + }, + { + "module name": "ohos.screenLock", + "classname": "screenLock", + "methodname": "isSecureMode", + "methodname2": "function isSecureMode(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.screenLock.d.ts" + }, + { + "module name": "ohos.screenLock", + "classname": "screenLock", + "methodname": "isSecure", + "methodname2": "function isSecure(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.screenLock.d.ts" + }, + { + "module name": "ohos.screenLock", + "classname": "screenLock", + "methodname": "unlockScreen", + "methodname2": "function unlockScreen(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.screenLock.d.ts" + }, + { + "module name": "ohos.screenLock", + "classname": "screenLock", + "methodname": "unlockScreen", + "methodname2": "function unlockScreen():Promise;", + "api type": "Method", + "path": "\\api\\@ohos.screenLock.d.ts" + }, + { + "module name": "ohos.screenLock", + "classname": "screenLock", + "methodname": "unlock", + "methodname2": "function unlock(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.screenLock.d.ts" + }, + { + "module name": "ohos.screenLock", + "classname": "screenLock", + "methodname": "unlock", + "methodname2": "function unlock():Promise;", + "api type": "Method", + "path": "\\api\\@ohos.screenLock.d.ts" + }, + { + "module name": "ohos.screenLock", + "classname": "SystemEvent", + "methodname": "eventType", + "methodname2": "eventType: EventType,", + "api type": "Field", + "path": "\\api\\@ohos.screenLock.d.ts" + }, + { + "module name": "ohos.screenLock", + "classname": "SystemEvent", + "methodname": "params", + "methodname2": "params: string", + "api type": "Field", + "path": "\\api\\@ohos.screenLock.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "huks", + "methodname": "attestKeyItem", + "methodname2": "function attestKeyItem(keyAlias: string, options: HuksOptions, callback: AsyncCallback) : void;", + "api type": "Method", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "huks", + "methodname": "attestKeyItem", + "methodname2": "function attestKeyItem(keyAlias: string, options: HuksOptions) : Promise;", + "api type": "Method", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksKeyDigest", + "methodname": "HUKS_DIGEST_MD5", + "methodname2": "HUKS_DIGEST_MD5 = 1", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksKeyDigest", + "methodname": "HUKS_DIGEST_SHA1", + "methodname2": "HUKS_DIGEST_SHA1 = 10", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksKeyDigest", + "methodname": "HUKS_DIGEST_SHA224", + "methodname2": "HUKS_DIGEST_SHA224 = 11", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksKeyPadding", + "methodname": "HUKS_PADDING_PKCS5", + "methodname2": "HUKS_PADDING_PKCS5 = 4", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksCipherMode", + "methodname": "HUKS_MODE_OFB", + "methodname2": "HUKS_MODE_OFB = 4", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksCipherMode", + "methodname": "HUKS_MODE_CCM", + "methodname2": "HUKS_MODE_CCM = 31", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksKeySize", + "methodname": "HUKS_RSA_KEY_SIZE_512", + "methodname2": "HUKS_RSA_KEY_SIZE_512 = 512", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksKeySize", + "methodname": "HUKS_RSA_KEY_SIZE_768", + "methodname2": "HUKS_RSA_KEY_SIZE_768 = 768", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksKeySize", + "methodname": "HUKS_RSA_KEY_SIZE_1024", + "methodname2": "HUKS_RSA_KEY_SIZE_1024 = 1024", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksKeySize", + "methodname": "HUKS_ECC_KEY_SIZE_224", + "methodname2": "HUKS_ECC_KEY_SIZE_224 = 224", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksKeySize", + "methodname": "HUKS_AES_KEY_SIZE_512", + "methodname2": "HUKS_AES_KEY_SIZE_512 = 512", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksKeySize", + "methodname": "HUKS_DH_KEY_SIZE_2048", + "methodname2": "HUKS_DH_KEY_SIZE_2048 = 2048", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksKeySize", + "methodname": "HUKS_DH_KEY_SIZE_3072", + "methodname2": "HUKS_DH_KEY_SIZE_3072 = 3072", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksKeySize", + "methodname": "HUKS_DH_KEY_SIZE_4096", + "methodname2": "HUKS_DH_KEY_SIZE_4096 = 4096", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksKeyAlg", + "methodname": "HUKS_ALG_DSA", + "methodname2": "HUKS_ALG_DSA = 3", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksKeyAlg", + "methodname": "HUKS_ALG_HKDF", + "methodname2": "HUKS_ALG_HKDF = 51", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksKeyAlg", + "methodname": "HUKS_ALG_DH", + "methodname2": "HUKS_ALG_DH = 103", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksImportKeyType", + "methodname": "HUKS_KEY_TYPE_PRIVATE_KEY", + "methodname2": "HUKS_KEY_TYPE_PRIVATE_KEY = 1", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksUserAuthType", + "methodname": "HUKS_USER_AUTH_TYPE_PIN", + "methodname2": "HUKS_USER_AUTH_TYPE_PIN = 1 << 2", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksSecureSignType", + "methodname": "HUKS_SECURE_SIGN_WITH_AUTHINFO", + "methodname2": "HUKS_SECURE_SIGN_WITH_AUTHINFO = 1", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksTag", + "methodname": "HUKS_TAG_ATTESTATION_ID_BRAND", + "methodname2": "HUKS_TAG_ATTESTATION_ID_BRAND = HuksTagType.HUKS_TAG_TYPE_BYTES | 503", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksTag", + "methodname": "HUKS_TAG_ATTESTATION_ID_DEVICE", + "methodname2": "HUKS_TAG_ATTESTATION_ID_DEVICE = HuksTagType.HUKS_TAG_TYPE_BYTES | 504", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksTag", + "methodname": "HUKS_TAG_ATTESTATION_ID_PRODUCT", + "methodname2": "HUKS_TAG_ATTESTATION_ID_PRODUCT = HuksTagType.HUKS_TAG_TYPE_BYTES | 505", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksTag", + "methodname": "HUKS_TAG_ATTESTATION_ID_SERIAL", + "methodname2": "HUKS_TAG_ATTESTATION_ID_SERIAL = HuksTagType.HUKS_TAG_TYPE_BYTES | 506", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksTag", + "methodname": "HUKS_TAG_ATTESTATION_ID_IMEI", + "methodname2": "HUKS_TAG_ATTESTATION_ID_IMEI = HuksTagType.HUKS_TAG_TYPE_BYTES | 507", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksTag", + "methodname": "HUKS_TAG_ATTESTATION_ID_MEID", + "methodname2": "HUKS_TAG_ATTESTATION_ID_MEID = HuksTagType.HUKS_TAG_TYPE_BYTES | 508", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksTag", + "methodname": "HUKS_TAG_ATTESTATION_ID_MANUFACTURER", + "methodname2": "HUKS_TAG_ATTESTATION_ID_MANUFACTURER = HuksTagType.HUKS_TAG_TYPE_BYTES | 509", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksTag", + "methodname": "HUKS_TAG_ATTESTATION_ID_MODEL", + "methodname2": "HUKS_TAG_ATTESTATION_ID_MODEL = HuksTagType.HUKS_TAG_TYPE_BYTES | 510", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksTag", + "methodname": "HUKS_TAG_ATTESTATION_ID_ALIAS", + "methodname2": "HUKS_TAG_ATTESTATION_ID_ALIAS = HuksTagType.HUKS_TAG_TYPE_BYTES | 511", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksTag", + "methodname": "HUKS_TAG_ATTESTATION_ID_SOCID", + "methodname2": "HUKS_TAG_ATTESTATION_ID_SOCID = HuksTagType.HUKS_TAG_TYPE_BYTES | 512", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksTag", + "methodname": "HUKS_TAG_ATTESTATION_ID_UDID", + "methodname2": "HUKS_TAG_ATTESTATION_ID_UDID = HuksTagType.HUKS_TAG_TYPE_BYTES | 513", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksTag", + "methodname": "HUKS_TAG_ATTESTATION_ID_SEC_LEVEL_INFO", + "methodname2": "HUKS_TAG_ATTESTATION_ID_SEC_LEVEL_INFO = HuksTagType.HUKS_TAG_TYPE_BYTES | 514", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.security.huks", + "classname": "HuksTag", + "methodname": "HUKS_TAG_ATTESTATION_ID_VERSION_INFO", + "methodname2": "HUKS_TAG_ATTESTATION_ID_VERSION_INFO = HuksTagType.HUKS_TAG_TYPE_BYTES | 515", + "api type": "Enum", + "path": "\\api\\@ohos.security.huks.d.ts" + }, + { + "module name": "ohos.sensor", + "classname": "Sensor", + "methodname": "minSamplePeriod", + "methodname2": "minSamplePeriod;", + "api type": "Field", + "path": "\\api\\@ohos.sensor.d.ts" + }, + { + "module name": "ohos.sensor", + "classname": "Sensor", + "methodname": "maxSamplePeriod", + "methodname2": "maxSamplePeriod;", + "api type": "Field", + "path": "\\api\\@ohos.sensor.d.ts" + }, + { + "module name": "ohos.sensor", + "classname": "sensor", + "methodname": "getSingleSensor", + "methodname2": "function getSingleSensor(type: SensorId, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.sensor.d.ts" + }, + { + "module name": "ohos.sensor", + "classname": "sensor", + "methodname": "getSingleSensor", + "methodname2": "function getSingleSensor(type: SensorId): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.sensor.d.ts" + }, + { + "module name": "ohos.sensor", + "classname": "sensor", + "methodname": "getSensorList", + "methodname2": "function getSensorList(callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.sensor.d.ts" + }, + { + "module name": "ohos.sensor", + "classname": "sensor", + "methodname": "getSensorList", + "methodname2": "function getSensorList(): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.sensor.d.ts" + }, + { + "module name": "ohos.telephony.data", + "classname": "data", + "methodname": "getDefaultCellularDataSlotIdSync", + "methodname2": "function getDefaultCellularDataSlotIdSync(): number;", + "api type": "Method", + "path": "\\api\\@ohos.telephony.data.d.ts" + }, + { + "module name": "ohos.telephony.sim", + "classname": "sim", + "methodname": "getOpKey", + "methodname2": "function getOpKey(slotId: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.telephony.sim.d.ts" + }, + { + "module name": "ohos.telephony.sim", + "classname": "sim", + "methodname": "getOpKey", + "methodname2": "function getOpKey(slotId: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.telephony.sim.d.ts" + }, + { + "module name": "ohos.telephony.sim", + "classname": "sim", + "methodname": "getOpName", + "methodname2": "function getOpName(slotId: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.telephony.sim.d.ts" + }, + { + "module name": "ohos.telephony.sim", + "classname": "sim", + "methodname": "getOpName", + "methodname2": "function getOpName(slotId: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.telephony.sim.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "MatchPattern", + "methodname": "EQUALS", + "methodname2": "EQUALS = 0", + "api type": "Enum", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "MatchPattern", + "methodname": "CONTAINS", + "methodname2": "CONTAINS = 1", + "api type": "Enum", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "MatchPattern", + "methodname": "STARTS_WITH", + "methodname2": "STARTS_WITH = 2", + "api type": "Enum", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "MatchPattern", + "methodname": "ENDS_WITH", + "methodname2": "ENDS_WITH = 3", + "api type": "Enum", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "By", + "methodname": "text", + "methodname2": "text(txt: string, pattern?: MatchPattern): By;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "By", + "methodname": "key", + "methodname2": "key(key: string): By;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "By", + "methodname": "id", + "methodname2": "id(id: number): By;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "By", + "methodname": "type", + "methodname2": "type(tp: string): By;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "By", + "methodname": "clickable", + "methodname2": "clickable(b?: boolean): By;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "By", + "methodname": "scrollable", + "methodname2": "scrollable(b?: boolean): By;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "By", + "methodname": "enabled", + "methodname2": "enabled(b?: boolean): By;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "By", + "methodname": "focused", + "methodname2": "focused(b?: boolean): By;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "By", + "methodname": "selected", + "methodname2": "selected(b?: boolean): By;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "By", + "methodname": "isBefore", + "methodname2": "isBefore(by: By): By;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "By", + "methodname": "isAfter", + "methodname2": "isAfter(by: By): By;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiComponent", + "methodname": "click", + "methodname2": "click(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiComponent", + "methodname": "doubleClick", + "methodname2": "doubleClick(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiComponent", + "methodname": "longClick", + "methodname2": "longClick(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiComponent", + "methodname": "getId", + "methodname2": "getId(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiComponent", + "methodname": "getKey", + "methodname2": "getKey(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiComponent", + "methodname": "getText", + "methodname2": "getText(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiComponent", + "methodname": "getType", + "methodname2": "getType(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiComponent", + "methodname": "isClickable", + "methodname2": "isClickable(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiComponent", + "methodname": "isScrollable", + "methodname2": "isScrollable(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiComponent", + "methodname": "isEnabled", + "methodname2": "isEnabled(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiComponent", + "methodname": "isFocused", + "methodname2": "isFocused(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiComponent", + "methodname": "isSelected", + "methodname2": "isSelected(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiComponent", + "methodname": "inputText", + "methodname2": "inputText(text: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiComponent", + "methodname": "scrollSearch", + "methodname2": "scrollSearch(by: By): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiDriver", + "methodname": "create", + "methodname2": "static create(): UiDriver;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiDriver", + "methodname": "delayMs", + "methodname2": "delayMs(duration: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiDriver", + "methodname": "findComponent", + "methodname2": "findComponent(by: By): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiDriver", + "methodname": "findComponents", + "methodname2": "findComponents(by: By): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiDriver", + "methodname": "assertComponentExist", + "methodname2": "assertComponentExist(by: By): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiDriver", + "methodname": "pressBack", + "methodname2": "pressBack(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiDriver", + "methodname": "triggerKey", + "methodname2": "triggerKey(keyCode: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiDriver", + "methodname": "click", + "methodname2": "click(x: number, y: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiDriver", + "methodname": "doubleClick", + "methodname2": "doubleClick(x: number, y: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiDriver", + "methodname": "longClick", + "methodname2": "longClick(x: number, y: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiDriver", + "methodname": "swipe", + "methodname2": "swipe(startx: number, starty: number, endx: number, endy: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiDriver", + "methodname": "screenCap", + "methodname2": "screenCap(savePath: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "WindowMode", + "methodname": "FULLSCREEN", + "methodname2": "FULLSCREEN", + "api type": "Enum", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "WindowMode", + "methodname": "PRIMARY", + "methodname2": "PRIMARY", + "api type": "Enum", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "WindowMode", + "methodname": "SECONDARY", + "methodname2": "SECONDARY", + "api type": "Enum", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "WindowMode", + "methodname": "FLOATING", + "methodname2": "FLOATING", + "api type": "Enum", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "ResizeDirection", + "methodname": "LEFT", + "methodname2": "LEFT", + "api type": "Enum", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "ResizeDirection", + "methodname": "RIGHT", + "methodname2": "RIGHT", + "api type": "Enum", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "ResizeDirection", + "methodname": "UP", + "methodname2": "UP", + "api type": "Enum", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "ResizeDirection", + "methodname": "DOWN", + "methodname2": "DOWN", + "api type": "Enum", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "ResizeDirection", + "methodname": "LEFT_UP", + "methodname2": "LEFT_UP", + "api type": "Enum", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "ResizeDirection", + "methodname": "LEFT_DOWN", + "methodname2": "LEFT_DOWN", + "api type": "Enum", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "ResizeDirection", + "methodname": "RIGHT_UP", + "methodname2": "RIGHT_UP", + "api type": "Enum", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "ResizeDirection", + "methodname": "RIGHT_DOWN", + "methodname2": "RIGHT_DOWN", + "api type": "Enum", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "DisplayRotation", + "methodname": "ROTATION_0", + "methodname2": "ROTATION_0", + "api type": "Enum", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "DisplayRotation", + "methodname": "ROTATION_90", + "methodname2": "ROTATION_90", + "api type": "Enum", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "DisplayRotation", + "methodname": "ROTATION_180", + "methodname2": "ROTATION_180", + "api type": "Enum", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "DisplayRotation", + "methodname": "ROTATION_270", + "methodname2": "ROTATION_270", + "api type": "Enum", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Point", + "methodname": "X", + "methodname2": "readonly X: number;", + "api type": "Field", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Point", + "methodname": "Y", + "methodname2": "readonly Y: number;", + "api type": "Field", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Rect", + "methodname": "leftX", + "methodname2": "readonly leftX: number;", + "api type": "Field", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Rect", + "methodname": "topY", + "methodname2": "readonly topY: number;", + "api type": "Field", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Rect", + "methodname": "rightX", + "methodname2": "readonly rightX: number;", + "api type": "Field", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Rect", + "methodname": "bottomY", + "methodname2": "readonly bottomY: number;", + "api type": "Field", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "WindowFilter", + "methodname": "bundleName", + "methodname2": "readonly bundleName?: string;", + "api type": "Field", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "WindowFilter", + "methodname": "title", + "methodname2": "readonly title?: string;", + "api type": "Field", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "WindowFilter", + "methodname": "focused", + "methodname2": "readonly focused?: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "WindowFilter", + "methodname": "actived", + "methodname2": "readonly actived?: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "On", + "methodname": "text", + "methodname2": "text(txt: string, pattern?: MatchPattern): On;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "On", + "methodname": "id", + "methodname2": "id(id: string): On;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "On", + "methodname": "type", + "methodname2": "type(tp: string): On;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "On", + "methodname": "clickable", + "methodname2": "clickable(b?: boolean): On;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "On", + "methodname": "longClickable", + "methodname2": "longClickable(b?: boolean): On;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "On", + "methodname": "scrollable", + "methodname2": "scrollable(b?: boolean): On;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "On", + "methodname": "enabled", + "methodname2": "enabled(b?: boolean): On;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "On", + "methodname": "focused", + "methodname2": "focused(b?: boolean): On;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "On", + "methodname": "selected", + "methodname2": "selected(b?: boolean): On;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "On", + "methodname": "checked", + "methodname2": "checked(b?: boolean): On;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "On", + "methodname": "checkable", + "methodname2": "checkable(b?: boolean): On;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "On", + "methodname": "isBefore", + "methodname2": "isBefore(on: On): On;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "On", + "methodname": "isAfter", + "methodname2": "isAfter(on: On): On;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "click", + "methodname2": "click(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "doubleClick", + "methodname2": "doubleClick(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "longClick", + "methodname2": "longClick(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "getId", + "methodname2": "getId(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "getText", + "methodname2": "getText(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "getType", + "methodname2": "getType(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "isClickable", + "methodname2": "isClickable(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "isLongClickable", + "methodname2": "isLongClickable(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "isScrollable", + "methodname2": "isScrollable(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "isEnabled", + "methodname2": "isEnabled(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "isFocused", + "methodname2": "isFocused(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "isSelected", + "methodname2": "isSelected(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "isChecked", + "methodname2": "isChecked(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "isCheckable", + "methodname2": "isCheckable(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "inputText", + "methodname2": "inputText(text: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "clearText", + "methodname2": "clearText(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "scrollToTop", + "methodname2": "scrollToTop(speed?: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "scrollToBottom", + "methodname2": "scrollToBottom(speed?: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "scrollSearch", + "methodname2": "scrollSearch(on: On): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "getBounds", + "methodname2": "getBounds(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "getBoundsCenter", + "methodname2": "getBoundsCenter(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "dragTo", + "methodname2": "dragTo(target: Component): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "pinchOut", + "methodname2": "pinchOut(scale: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Component", + "methodname": "pinchIn", + "methodname2": "pinchIn(scale: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "create", + "methodname2": "static create(): Driver;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "delayMs", + "methodname2": "delayMs(duration: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "findComponent", + "methodname2": "findComponent(on: On): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "findWindow", + "methodname2": "findWindow(filter: WindowFilter): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "waitForComponent", + "methodname2": "waitForComponent(on: On, time: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "findComponents", + "methodname2": "findComponents(on: On): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "assertComponentExist", + "methodname2": "assertComponentExist(on: On): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "pressBack", + "methodname2": "pressBack(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "triggerKey", + "methodname2": "triggerKey(keyCode: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "triggerCombineKeys", + "methodname2": "triggerCombineKeys(key0: number, key1: number, key2?: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "click", + "methodname2": "click(x: number, y: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "doubleClick", + "methodname2": "doubleClick(x: number, y: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "longClick", + "methodname2": "longClick(x: number, y: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "swipe", + "methodname2": "swipe(startx: number, starty: number, endx: number, endy: number, speed?: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "drag", + "methodname2": "drag(startx: number, starty: number, endx: number, endy: number, speed?: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "screenCap", + "methodname2": "screenCap(savePath: string): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "setDisplayRotation", + "methodname2": "setDisplayRotation(rotation: DisplayRotation): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "getDisplayRotation", + "methodname2": "getDisplayRotation(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "setDisplayRotationEnabled", + "methodname2": "setDisplayRotationEnabled(enabled: boolean): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "getDisplaySize", + "methodname2": "getDisplaySize(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "getDisplayDensity", + "methodname2": "getDisplayDensity(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "wakeUpDisplay", + "methodname2": "wakeUpDisplay(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "pressHome", + "methodname2": "pressHome(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "waitForIdle", + "methodname2": "waitForIdle(idleTime: number, timeout: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "fling", + "methodname2": "fling(from: Point, to: Point, stepLen: number, speed: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "Driver", + "methodname": "injectMultiPointerAction", + "methodname2": "injectMultiPointerAction(pointers: PointerMatrix, speed?: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiWindow", + "methodname": "getBundleName", + "methodname2": "getBundleName(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiWindow", + "methodname": "getBounds", + "methodname2": "getBounds(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiWindow", + "methodname": "getTitle", + "methodname2": "getTitle(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiWindow", + "methodname": "getWindowMode", + "methodname2": "getWindowMode(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiWindow", + "methodname": "isFocused", + "methodname2": "isFocused(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiWindow", + "methodname": "isActived", + "methodname2": "isActived(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiWindow", + "methodname": "focus", + "methodname2": "focus(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiWindow", + "methodname": "moveTo", + "methodname2": "moveTo(x: number, y: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiWindow", + "methodname": "resize", + "methodname2": "resize(wide: number, height: number, direction: ResizeDirection): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiWindow", + "methodname": "split", + "methodname2": "split(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiWindow", + "methodname": "maximize", + "methodname2": "maximize(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiWindow", + "methodname": "minimize", + "methodname2": "minimize(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiWindow", + "methodname": "resume", + "methodname2": "resume(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "UiWindow", + "methodname": "close", + "methodname2": "close(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "PointerMatrix", + "methodname": "create", + "methodname2": "static create(fingers: number, steps: number): PointerMatrix;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.uitest", + "classname": "PointerMatrix", + "methodname": "setPoint", + "methodname2": "setPoint(finger: number, step: number, point: Point): void;", + "api type": "Method", + "path": "\\api\\@ohos.uitest.d.ts" + }, + { + "module name": "ohos.usbV9", + "classname": "usbV9", + "methodname": "removeRight", + "methodname2": "function removeRight(deviceName: string): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.usbV9.d.ts" + }, + { + "module name": "ohos.userIAM.userAuth", + "classname": "Authenticator", + "methodname": "execute", + "methodname2": "execute(type: AuthType, level: SecureLevel, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.userIAM.userAuth.d.ts" + }, + { + "module name": "ohos.userIAM.userAuth", + "classname": "Authenticator", + "methodname": "execute", + "methodname2": "execute(type: AuthType, level: SecureLevel): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.userIAM.userAuth.d.ts" + }, + { + "module name": "ohos.userIAM.userAuth", + "classname": "userAuth", + "methodname": "getAuthenticator", + "methodname2": "function getAuthenticator(): Authenticator;", + "api type": "Method", + "path": "\\api\\@ohos.userIAM.userAuth.d.ts" + }, + { + "module name": "ohos.userIAM.userAuth", + "classname": "UserAuth", + "methodname": "constructor", + "methodname2": "constructor();", + "api type": "Method", + "path": "\\api\\@ohos.userIAM.userAuth.d.ts" + }, + { + "module name": "ohos.userIAM.userAuth", + "classname": "AuthEvent", + "methodname": "callback", + "methodname2": "callback(result: EventInfo): void;", + "api type": "Method", + "path": "\\api\\@ohos.userIAM.userAuth.d.ts" + }, + { + "module name": "ohos.userIAM.userAuth", + "classname": "AuthInstance", + "methodname": "on", + "methodname2": "on: (name: AuthEventKey, callback: AuthEvent) => void;", + "api type": "Method", + "path": "\\api\\@ohos.userIAM.userAuth.d.ts" + }, + { + "module name": "ohos.userIAM.userAuth", + "classname": "AuthInstance", + "methodname": "off", + "methodname2": "off: (name: AuthEventKey) => void;", + "api type": "Method", + "path": "\\api\\@ohos.userIAM.userAuth.d.ts" + }, + { + "module name": "ohos.userIAM.userAuth", + "classname": "AuthInstance", + "methodname": "start", + "methodname2": "start: () => void;", + "api type": "Method", + "path": "\\api\\@ohos.userIAM.userAuth.d.ts" + }, + { + "module name": "ohos.userIAM.userAuth", + "classname": "AuthInstance", + "methodname": "cancel", + "methodname2": "cancel: () => void;", + "api type": "Method", + "path": "\\api\\@ohos.userIAM.userAuth.d.ts" + }, + { + "module name": "ohos.vibrator", + "classname": "vibrator", + "methodname": "vibrate", + "methodname2": "function vibrate(duration: number, callback?: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.vibrator.d.ts" + }, + { + "module name": "ohos.vibrator", + "classname": "vibrator", + "methodname": "vibrate", + "methodname2": "function vibrate(duration: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.vibrator.d.ts" + }, + { + "module name": "ohos.vibrator", + "classname": "vibrator", + "methodname": "vibrate", + "methodname2": "function vibrate(effectId: EffectId): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.vibrator.d.ts" + }, + { + "module name": "ohos.vibrator", + "classname": "vibrator", + "methodname": "vibrate", + "methodname2": "function vibrate(effectId: EffectId, callback?: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.vibrator.d.ts" + }, + { + "module name": "ohos.vibrator", + "classname": "vibrator", + "methodname": "startVibration", + "methodname2": "function startVibration(effect: VibrateEffect, attribute: VibrateAttribute, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.vibrator.d.ts" + }, + { + "module name": "ohos.vibrator", + "classname": "vibrator", + "methodname": "startVibration", + "methodname2": "function startVibration(effect: VibrateEffect, attribute: VibrateAttribute): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.vibrator.d.ts" + }, + { + "module name": "ohos.vibrator", + "classname": "vibrator", + "methodname": "stopVibration", + "methodname2": "function stopVibration(stopMode: VibratorStopMode): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.vibrator.d.ts" + }, + { + "module name": "ohos.vibrator", + "classname": "vibrator", + "methodname": "stopVibration", + "methodname2": "function stopVibration(stopMode: VibratorStopMode, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.vibrator.d.ts" + }, + { + "module name": "ohos.vibrator", + "classname": "vibrator", + "methodname": "stop", + "methodname2": "function stop(stopMode: VibratorStopMode): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.vibrator.d.ts" + }, + { + "module name": "ohos.vibrator", + "classname": "vibrator", + "methodname": "stop", + "methodname2": "function stop(stopMode: VibratorStopMode, callback?: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.vibrator.d.ts" + }, + { + "module name": "ohos.vibrator", + "classname": "VibrateAttribute", + "methodname": "id", + "methodname2": "id?: number,", + "api type": "Field", + "path": "\\api\\@ohos.vibrator.d.ts" + }, + { + "module name": "ohos.vibrator", + "classname": "VibrateAttribute", + "methodname": "usage", + "methodname2": "usage: Usage,", + "api type": "Field", + "path": "\\api\\@ohos.vibrator.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "WallpaperType", + "methodname": "WALLPAPER_SYSTEM", + "methodname2": "WALLPAPER_SYSTEM", + "api type": "Enum", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "WallpaperType", + "methodname": "WALLPAPER_LOCKSCREEN", + "methodname2": "WALLPAPER_LOCKSCREEN", + "api type": "Enum", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "getColors", + "methodname2": "function getColors(wallpaperType: WallpaperType, callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "getColors", + "methodname2": "function getColors(wallpaperType: WallpaperType): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "getColorsSync", + "methodname2": "function getColorsSync(wallpaperType: WallpaperType): Array;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "getId", + "methodname2": "function getId(wallpaperType: WallpaperType, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "getId", + "methodname2": "function getId(wallpaperType: WallpaperType): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "getIdSync", + "methodname2": "function getIdSync(wallpaperType: WallpaperType): number;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "getFile", + "methodname2": "function getFile(wallpaperType: WallpaperType, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "getFile", + "methodname2": "function getFile(wallpaperType: WallpaperType): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "getFileSync", + "methodname2": "function getFileSync(wallpaperType: WallpaperType): number;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "getMinHeight", + "methodname2": "function getMinHeight(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "getMinHeight", + "methodname2": "function getMinHeight(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "getMinHeightSync", + "methodname2": "function getMinHeightSync(): number;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "getMinWidth", + "methodname2": "function getMinWidth(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "getMinWidth", + "methodname2": "function getMinWidth(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "getMinWidthSync", + "methodname2": "function getMinWidthSync(): number;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "isChangePermitted", + "methodname2": "function isChangePermitted(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "isChangePermitted", + "methodname2": "function isChangePermitted(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "isChangeAllowed", + "methodname2": "function isChangeAllowed(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "isOperationAllowed", + "methodname2": "function isOperationAllowed(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "isOperationAllowed", + "methodname2": "function isOperationAllowed(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "isUserChangeAllowed", + "methodname2": "function isUserChangeAllowed(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "reset", + "methodname2": "function reset(wallpaperType: WallpaperType, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "reset", + "methodname2": "function reset(wallpaperType: WallpaperType): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "restore", + "methodname2": "function restore(wallpaperType: WallpaperType, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "restore", + "methodname2": "function restore(wallpaperType: WallpaperType): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "setWallpaper", + "methodname2": "function setWallpaper(source: string | image.PixelMap, wallpaperType: WallpaperType, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "setWallpaper", + "methodname2": "function setWallpaper(source: string | image.PixelMap, wallpaperType: WallpaperType): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "setImage", + "methodname2": "function setImage(source: string | image.PixelMap, wallpaperType: WallpaperType, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "setImage", + "methodname2": "function setImage(source: string | image.PixelMap, wallpaperType: WallpaperType): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "on_colorChange", + "methodname2": "function on(type: 'colorChange', callback: (colors: Array, wallpaperType: WallpaperType) => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "wallpaper", + "methodname": "off_colorChange", + "methodname2": "function off(type: 'colorChange', callback?: (colors: Array, wallpaperType: WallpaperType) => void): void;", + "api type": "Method", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "RgbaColor", + "methodname": "red", + "methodname2": "red: number;", + "api type": "Field", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "RgbaColor", + "methodname": "green", + "methodname2": "green: number;", + "api type": "Field", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "RgbaColor", + "methodname": "blue", + "methodname2": "blue: number;", + "api type": "Field", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.wallpaper", + "classname": "RgbaColor", + "methodname": "alpha", + "methodname2": "alpha: number;", + "api type": "Field", + "path": "\\api\\@ohos.wallpaper.d.ts" + }, + { + "module name": "ohos.web.webview", + "classname": "WebAsyncController", + "methodname": "constructor", + "methodname2": "constructor(controller: WebController);", + "api type": "Method", + "path": "\\api\\@ohos.web.webview.d.ts" + }, + { + "module name": "ohos.web.webview", + "classname": "WebAsyncController", + "methodname": "storeWebArchive", + "methodname2": "storeWebArchive(baseName: string, autoName: boolean): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.web.webview.d.ts" + }, + { + "module name": "ohos.web.webview", + "classname": "WebAsyncController", + "methodname": "storeWebArchive", + "methodname2": "storeWebArchive(baseName: string, autoName: boolean, callback : AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.web.webview.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "getP2pLinkedInfo", + "methodname2": "function getP2pLinkedInfo(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "getP2pLinkedInfo", + "methodname2": "function getP2pLinkedInfo(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "getCurrentGroup", + "methodname2": "function getCurrentGroup(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "getCurrentGroup", + "methodname2": "function getCurrentGroup(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "getP2pPeerDevices", + "methodname2": "function getP2pPeerDevices(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "getP2pPeerDevices", + "methodname2": "function getP2pPeerDevices(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "createGroup", + "methodname2": "function createGroup(config: WifiP2PConfig): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "removeGroup", + "methodname2": "function removeGroup(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "p2pConnect", + "methodname2": "function p2pConnect(config: WifiP2PConfig): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "p2pCancelConnect", + "methodname2": "function p2pCancelConnect(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "startDiscoverDevices", + "methodname2": "function startDiscoverDevices(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "stopDiscoverDevices", + "methodname2": "function stopDiscoverDevices(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "on_hotspotStateChange", + "methodname2": "function on(type: \"hotspotStateChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "off_hotspotStateChange", + "methodname2": "function off(type: \"hotspotStateChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "on_p2pStateChange", + "methodname2": "function on(type: \"p2pStateChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "off_p2pStateChange", + "methodname2": "function off(type: \"p2pStateChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "on_p2pConnectionChange", + "methodname2": "function on(type: \"p2pConnectionChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "off_p2pConnectionChange", + "methodname2": "function off(type: \"p2pConnectionChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "on_p2pDeviceChange", + "methodname2": "function on(type: \"p2pDeviceChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "off_p2pDeviceChange", + "methodname2": "function off(type: \"p2pDeviceChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "on_p2pPeerDeviceChange", + "methodname2": "function on(type: \"p2pPeerDeviceChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "off_p2pPeerDeviceChange", + "methodname2": "function off(type: \"p2pPeerDeviceChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "on_p2pPersistentGroupChange", + "methodname2": "function on(type: \"p2pPersistentGroupChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "off_p2pPersistentGroupChange", + "methodname2": "function off(type: \"p2pPersistentGroupChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "on_p2pDiscoveryChange", + "methodname2": "function on(type: \"p2pDiscoveryChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "wifi", + "methodname": "off_p2pDiscoveryChange", + "methodname2": "function off(type: \"p2pDiscoveryChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2pDevice", + "methodname": "deviceName", + "methodname2": "deviceName: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2pDevice", + "methodname": "deviceAddress", + "methodname2": "deviceAddress: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2pDevice", + "methodname": "primaryDeviceType", + "methodname2": "primaryDeviceType: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2pDevice", + "methodname": "deviceStatus", + "methodname2": "deviceStatus: P2pDeviceStatus;", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2pDevice", + "methodname": "groupCapabilitys", + "methodname2": "groupCapabilitys: number;", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2PConfig", + "methodname": "deviceAddress", + "methodname2": "deviceAddress: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2PConfig", + "methodname": "netId", + "methodname2": "netId: number;", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2PConfig", + "methodname": "passphrase", + "methodname2": "passphrase: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2PConfig", + "methodname": "groupName", + "methodname2": "groupName: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2PConfig", + "methodname": "goBand", + "methodname2": "goBand: GroupOwnerBand;", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2pGroupInfo", + "methodname": "isP2pGo", + "methodname2": "isP2pGo: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2pGroupInfo", + "methodname": "ownerInfo", + "methodname2": "ownerInfo: WifiP2pDevice;", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2pGroupInfo", + "methodname": "passphrase", + "methodname2": "passphrase: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2pGroupInfo", + "methodname": "interface", + "methodname2": "interface: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2pGroupInfo", + "methodname": "groupName", + "methodname2": "groupName: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2pGroupInfo", + "methodname": "networkId", + "methodname2": "networkId: number;", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2pGroupInfo", + "methodname": "frequency", + "methodname2": "frequency: number;", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2pGroupInfo", + "methodname": "clientDevices", + "methodname2": "clientDevices: WifiP2pDevice[];", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2pGroupInfo", + "methodname": "goIpAddress", + "methodname2": "goIpAddress: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "P2pConnectState", + "methodname": "DISCONNECTED", + "methodname2": "DISCONNECTED = 0", + "api type": "Enum", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "P2pConnectState", + "methodname": "CONNECTED", + "methodname2": "CONNECTED = 1", + "api type": "Enum", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2pLinkedInfo", + "methodname": "connectState", + "methodname2": "connectState: P2pConnectState;", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2pLinkedInfo", + "methodname": "isGroupOwner", + "methodname2": "isGroupOwner: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "WifiP2pLinkedInfo", + "methodname": "groupOwnerAddr", + "methodname2": "groupOwnerAddr: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "P2pDeviceStatus", + "methodname": "CONNECTED", + "methodname2": "CONNECTED = 0", + "api type": "Enum", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "P2pDeviceStatus", + "methodname": "INVITED", + "methodname2": "INVITED = 1", + "api type": "Enum", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "P2pDeviceStatus", + "methodname": "FAILED", + "methodname2": "FAILED = 2", + "api type": "Enum", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "P2pDeviceStatus", + "methodname": "AVAILABLE", + "methodname2": "AVAILABLE = 3", + "api type": "Enum", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "P2pDeviceStatus", + "methodname": "UNAVAILABLE", + "methodname2": "UNAVAILABLE = 4", + "api type": "Enum", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "GroupOwnerBand", + "methodname": "GO_BAND_AUTO", + "methodname2": "GO_BAND_AUTO = 0", + "api type": "Enum", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "GroupOwnerBand", + "methodname": "GO_BAND_2GHZ", + "methodname2": "GO_BAND_2GHZ = 1", + "api type": "Enum", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifi", + "classname": "GroupOwnerBand", + "methodname": "GO_BAND_5GHZ", + "methodname2": "GO_BAND_5GHZ = 2", + "api type": "Enum", + "path": "\\api\\@ohos.wifi.d.ts" + }, + { + "module name": "ohos.wifiext", + "classname": "wifiext", + "methodname": "enableHotspot", + "methodname2": "function enableHotspot(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.wifiext.d.ts" + }, + { + "module name": "ohos.wifiext", + "classname": "wifiext", + "methodname": "disableHotspot", + "methodname2": "function disableHotspot(): boolean;", + "api type": "Method", + "path": "\\api\\@ohos.wifiext.d.ts" + }, + { + "module name": "ohos.wifiext", + "classname": "wifiext", + "methodname": "getSupportedPowerModel", + "methodname2": "function getSupportedPowerModel(): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.wifiext.d.ts" + }, + { + "module name": "ohos.wifiext", + "classname": "wifiext", + "methodname": "getSupportedPowerModel", + "methodname2": "function getSupportedPowerModel(callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiext.d.ts" + }, + { + "module name": "ohos.wifiext", + "classname": "wifiext", + "methodname": "getPowerModel", + "methodname2": "function getPowerModel (): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.wifiext.d.ts" + }, + { + "module name": "ohos.wifiext", + "classname": "wifiext", + "methodname": "getPowerModel", + "methodname2": "function getPowerModel (callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiext.d.ts" + }, + { + "module name": "ohos.wifiext", + "classname": "wifiext", + "methodname": "setPowerModel", + "methodname2": "function setPowerModel(model: PowerModel) : boolean", + "api type": "Method", + "path": "\\api\\@ohos.wifiext.d.ts" + }, + { + "module name": "ohos.wifiext", + "classname": "PowerModel", + "methodname": "SLEEPING", + "methodname2": "SLEEPING = 0", + "api type": "Enum", + "path": "\\api\\@ohos.wifiext.d.ts" + }, + { + "module name": "ohos.wifiext", + "classname": "PowerModel", + "methodname": "GENERAL", + "methodname2": "GENERAL = 1", + "api type": "Enum", + "path": "\\api\\@ohos.wifiext.d.ts" + }, + { + "module name": "ohos.wifiext", + "classname": "PowerModel", + "methodname": "THROUGH_WALL", + "methodname2": "THROUGH_WALL = 2", + "api type": "Enum", + "path": "\\api\\@ohos.wifiext.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "getP2pLinkedInfo", + "methodname2": "function getP2pLinkedInfo(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "getP2pLinkedInfo", + "methodname2": "function getP2pLinkedInfo(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "getCurrentGroup", + "methodname2": "function getCurrentGroup(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "getCurrentGroup", + "methodname2": "function getCurrentGroup(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "getP2pPeerDevices", + "methodname2": "function getP2pPeerDevices(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "getP2pPeerDevices", + "methodname2": "function getP2pPeerDevices(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "getP2pLocalDevice", + "methodname2": "function getP2pLocalDevice(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "getP2pLocalDevice", + "methodname2": "function getP2pLocalDevice(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "createGroup", + "methodname2": "function createGroup(config: WifiP2PConfig): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "removeGroup", + "methodname2": "function removeGroup(): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "p2pConnect", + "methodname2": "function p2pConnect(config: WifiP2PConfig): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "startDiscoverDevices", + "methodname2": "function startDiscoverDevices(): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "stopDiscoverDevices", + "methodname2": "function stopDiscoverDevices(): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "on_hotspotStateChange", + "methodname2": "function on(type: \"hotspotStateChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "off_hotspotStateChange", + "methodname2": "function off(type: \"hotspotStateChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "on_p2pStateChange", + "methodname2": "function on(type: \"p2pStateChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "off_p2pStateChange", + "methodname2": "function off(type: \"p2pStateChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "on_p2pConnectionChange", + "methodname2": "function on(type: \"p2pConnectionChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "off_p2pConnectionChange", + "methodname2": "function off(type: \"p2pConnectionChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "on_p2pDeviceChange", + "methodname2": "function on(type: \"p2pDeviceChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "off_p2pDeviceChange", + "methodname2": "function off(type: \"p2pDeviceChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "on_p2pPeerDeviceChange", + "methodname2": "function on(type: \"p2pPeerDeviceChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "off_p2pPeerDeviceChange", + "methodname2": "function off(type: \"p2pPeerDeviceChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "on_p2pPersistentGroupChange", + "methodname2": "function on(type: \"p2pPersistentGroupChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "off_p2pPersistentGroupChange", + "methodname2": "function off(type: \"p2pPersistentGroupChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "on_p2pDiscoveryChange", + "methodname2": "function on(type: \"p2pDiscoveryChange\", callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "wifiManager", + "methodname": "off_p2pDiscoveryChange", + "methodname2": "function off(type: \"p2pDiscoveryChange\", callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2pDevice", + "methodname": "deviceName", + "methodname2": "deviceName: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2pDevice", + "methodname": "deviceAddress", + "methodname2": "deviceAddress: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2pDevice", + "methodname": "primaryDeviceType", + "methodname2": "primaryDeviceType: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2pDevice", + "methodname": "deviceStatus", + "methodname2": "deviceStatus: P2pDeviceStatus;", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2pDevice", + "methodname": "groupCapabilities", + "methodname2": "groupCapabilities: number;", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2PConfig", + "methodname": "deviceAddress", + "methodname2": "deviceAddress: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2PConfig", + "methodname": "netId", + "methodname2": "netId: number;", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2PConfig", + "methodname": "passphrase", + "methodname2": "passphrase: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2PConfig", + "methodname": "groupName", + "methodname2": "groupName: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2PConfig", + "methodname": "goBand", + "methodname2": "goBand: GroupOwnerBand;", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2pGroupInfo", + "methodname": "isP2pGo", + "methodname2": "isP2pGo: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2pGroupInfo", + "methodname": "ownerInfo", + "methodname2": "ownerInfo: WifiP2pDevice;", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2pGroupInfo", + "methodname": "passphrase", + "methodname2": "passphrase: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2pGroupInfo", + "methodname": "interface", + "methodname2": "interface: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2pGroupInfo", + "methodname": "groupName", + "methodname2": "groupName: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2pGroupInfo", + "methodname": "networkId", + "methodname2": "networkId: number;", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2pGroupInfo", + "methodname": "frequency", + "methodname2": "frequency: number;", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2pGroupInfo", + "methodname": "clientDevices", + "methodname2": "clientDevices: WifiP2pDevice[];", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2pGroupInfo", + "methodname": "goIpAddress", + "methodname2": "goIpAddress: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "P2pConnectState", + "methodname": "DISCONNECTED", + "methodname2": "DISCONNECTED = 0", + "api type": "Enum", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "P2pConnectState", + "methodname": "CONNECTED", + "methodname2": "CONNECTED = 1", + "api type": "Enum", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2pLinkedInfo", + "methodname": "connectState", + "methodname2": "connectState: P2pConnectState;", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2pLinkedInfo", + "methodname": "isGroupOwner", + "methodname2": "isGroupOwner: boolean;", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "WifiP2pLinkedInfo", + "methodname": "groupOwnerAddr", + "methodname2": "groupOwnerAddr: string;", + "api type": "Field", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "P2pDeviceStatus", + "methodname": "CONNECTED", + "methodname2": "CONNECTED = 0", + "api type": "Enum", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "P2pDeviceStatus", + "methodname": "INVITED", + "methodname2": "INVITED = 1", + "api type": "Enum", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "P2pDeviceStatus", + "methodname": "FAILED", + "methodname2": "FAILED = 2", + "api type": "Enum", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "P2pDeviceStatus", + "methodname": "AVAILABLE", + "methodname2": "AVAILABLE = 3", + "api type": "Enum", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "P2pDeviceStatus", + "methodname": "UNAVAILABLE", + "methodname2": "UNAVAILABLE = 4", + "api type": "Enum", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "GroupOwnerBand", + "methodname": "GO_BAND_AUTO", + "methodname2": "GO_BAND_AUTO = 0", + "api type": "Enum", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "GroupOwnerBand", + "methodname": "GO_BAND_2GHZ", + "methodname2": "GO_BAND_2GHZ = 1", + "api type": "Enum", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManager", + "classname": "GroupOwnerBand", + "methodname": "GO_BAND_5GHZ", + "methodname2": "GO_BAND_5GHZ = 2", + "api type": "Enum", + "path": "\\api\\@ohos.wifiManager.d.ts" + }, + { + "module name": "ohos.wifiManagerExt", + "classname": "wifiManagerExt", + "methodname": "enableHotspot", + "methodname2": "function enableHotspot(): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManagerExt.d.ts" + }, + { + "module name": "ohos.wifiManagerExt", + "classname": "wifiManagerExt", + "methodname": "disableHotspot", + "methodname2": "function disableHotspot(): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManagerExt.d.ts" + }, + { + "module name": "ohos.wifiManagerExt", + "classname": "wifiManagerExt", + "methodname": "getSupportedPowerMode", + "methodname2": "function getSupportedPowerMode(): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManagerExt.d.ts" + }, + { + "module name": "ohos.wifiManagerExt", + "classname": "wifiManagerExt", + "methodname": "getSupportedPowerMode", + "methodname2": "function getSupportedPowerMode(callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManagerExt.d.ts" + }, + { + "module name": "ohos.wifiManagerExt", + "classname": "wifiManagerExt", + "methodname": "getPowerMode", + "methodname2": "function getPowerMode (): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManagerExt.d.ts" + }, + { + "module name": "ohos.wifiManagerExt", + "classname": "wifiManagerExt", + "methodname": "getPowerMode", + "methodname2": "function getPowerMode (callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.wifiManagerExt.d.ts" + }, + { + "module name": "ohos.wifiManagerExt", + "classname": "wifiManagerExt", + "methodname": "setPowerMode", + "methodname2": "function setPowerMode(mode: PowerMode) : void", + "api type": "Method", + "path": "\\api\\@ohos.wifiManagerExt.d.ts" + }, + { + "module name": "ohos.wifiManagerExt", + "classname": "PowerMode", + "methodname": "SLEEPING", + "methodname2": "SLEEPING = 0", + "api type": "Enum", + "path": "\\api\\@ohos.wifiManagerExt.d.ts" + }, + { + "module name": "ohos.wifiManagerExt", + "classname": "PowerMode", + "methodname": "GENERAL", + "methodname2": "GENERAL = 1", + "api type": "Enum", + "path": "\\api\\@ohos.wifiManagerExt.d.ts" + }, + { + "module name": "ohos.wifiManagerExt", + "classname": "PowerMode", + "methodname": "THROUGH_WALL", + "methodname2": "THROUGH_WALL = 2", + "api type": "Enum", + "path": "\\api\\@ohos.wifiManagerExt.d.ts" + }, + { + "module name": "ohos.window", + "classname": "WindowType", + "methodname": "TYPE_SYSTEM_ALERT", + "methodname2": "TYPE_SYSTEM_ALERT", + "api type": "Enum", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "WindowType", + "methodname": "TYPE_FLOAT", + "methodname2": "TYPE_FLOAT", + "api type": "Enum", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "WindowType", + "methodname": "TYPE_FLOAT_CAMERA", + "methodname2": "TYPE_FLOAT_CAMERA", + "api type": "Enum", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "AvoidAreaType", + "methodname": "TYPE_CUTOUT", + "methodname2": "TYPE_CUTOUT", + "api type": "Enum", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "AvoidAreaType", + "methodname": "TYPE_SYSTEM_GESTURE", + "methodname2": "TYPE_SYSTEM_GESTURE", + "api type": "Enum", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "WindowProperties", + "methodname": "dimBehindValue", + "methodname2": "dimBehindValue: number", + "api type": "Field", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "WindowProperties", + "methodname": "isRoundCorner", + "methodname2": "isRoundCorner: boolean", + "api type": "Field", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "ColorSpace", + "methodname": "DEFAULT", + "methodname2": "DEFAULT", + "api type": "Enum", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "ColorSpace", + "methodname": "WIDE_GAMUT", + "methodname2": "WIDE_GAMUT", + "api type": "Enum", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "Window", + "methodname": "on_screenshot", + "methodname2": "on(type: 'screenshot', callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "Window", + "methodname": "off_screenshot", + "methodname2": "off(type: 'screenshot', callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "Window", + "methodname": "on_dialogTargetTouch", + "methodname2": "on(type: 'dialogTargetTouch', callback: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "Window", + "methodname": "off_dialogTargetTouch", + "methodname2": "off(type: 'dialogTargetTouch', callback?: Callback): void;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "Window", + "methodname": "isSupportWideGamut", + "methodname2": "isSupportWideGamut(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "Window", + "methodname": "isSupportWideGamut", + "methodname2": "isSupportWideGamut(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "Window", + "methodname": "isWindowSupportWideGamut", + "methodname2": "isWindowSupportWideGamut(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "Window", + "methodname": "isWindowSupportWideGamut", + "methodname2": "isWindowSupportWideGamut(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "Window", + "methodname": "setColorSpace", + "methodname2": "setColorSpace(colorSpace:ColorSpace): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "Window", + "methodname": "setColorSpace", + "methodname2": "setColorSpace(colorSpace:ColorSpace, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "Window", + "methodname": "setWindowColorSpace", + "methodname2": "setWindowColorSpace(colorSpace:ColorSpace): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "Window", + "methodname": "setWindowColorSpace", + "methodname2": "setWindowColorSpace(colorSpace:ColorSpace, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "Window", + "methodname": "getColorSpace", + "methodname2": "getColorSpace(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "Window", + "methodname": "getColorSpace", + "methodname2": "getColorSpace(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "Window", + "methodname": "getWindowColorSpace", + "methodname2": "getWindowColorSpace(): ColorSpace;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "Window", + "methodname": "setDimBehind", + "methodname2": "setDimBehind(dimBehindValue: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "Window", + "methodname": "setDimBehind", + "methodname2": "setDimBehind(dimBehindValue: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "Window", + "methodname": "setOutsideTouchable", + "methodname2": "setOutsideTouchable(touchable: boolean): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "Window", + "methodname": "setOutsideTouchable", + "methodname2": "setOutsideTouchable(touchable: boolean, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "Window", + "methodname": "snapshot", + "methodname2": "snapshot(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "Window", + "methodname": "snapshot", + "methodname2": "snapshot(): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.window", + "classname": "WindowStage", + "methodname": "getMainWindowSync", + "methodname2": "getMainWindowSync(): Window;", + "api type": "Method", + "path": "\\api\\@ohos.window.d.ts" + }, + { + "module name": "ohos.workScheduler", + "classname": "workScheduler", + "methodname": "getWorkStatus", + "methodname2": "function getWorkStatus(workId: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.workScheduler.d.ts" + }, + { + "module name": "ohos.workScheduler", + "classname": "workScheduler", + "methodname": "obtainAllWorks", + "methodname2": "function obtainAllWorks(): Promise>;", + "api type": "Method", + "path": "\\api\\@ohos.workScheduler.d.ts" + }, + { + "module name": "ohos.workScheduler", + "classname": "workScheduler", + "methodname": "isLastWorkTimeOut", + "methodname2": "function isLastWorkTimeOut(workId: number): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.workScheduler.d.ts" + }, + { + "module name": "ohos.WorkSchedulerExtensionAbility", + "classname": "WorkSchedulerExtensionAbility", + "methodname": "onWorkStart", + "methodname2": "onWorkStart(work: workScheduler.WorkInfo): void;", + "api type": "Method", + "path": "\\api\\@ohos.WorkSchedulerExtensionAbility.d.ts" + }, + { + "module name": "ohos.WorkSchedulerExtensionAbility", + "classname": "WorkSchedulerExtensionAbility", + "methodname": "onWorkStop", + "methodname2": "onWorkStop(work: workScheduler.WorkInfo): void;", + "api type": "Method", + "path": "\\api\\@ohos.WorkSchedulerExtensionAbility.d.ts" + }, + { + "module name": "ohos.zlib", + "classname": "zlib", + "methodname": "compressFile", + "methodname2": "function compressFile(inFile: string, outFile: string, options: Options, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.zlib.d.ts" + }, + { + "module name": "ohos.zlib", + "classname": "zlib", + "methodname": "compressFile", + "methodname2": "function compressFile(inFile:string, outFile:string, options: Options): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.zlib.d.ts" + }, + { + "module name": "ohos.zlib", + "classname": "zlib", + "methodname": "decompressFile", + "methodname2": "function decompressFile(inFile: string, outFile: string, options: Options, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\@ohos.zlib.d.ts" + }, + { + "module name": "ohos.zlib", + "classname": "zlib", + "methodname": "decompressFile", + "methodname2": "function decompressFile(inFile: string, outFile: string, options: Options): Promise;", + "api type": "Method", + "path": "\\api\\@ohos.zlib.d.ts" + }, + { + "module name": "system.bluetooth", + "classname": "StartBLEScanOptions", + "methodname": "interval", + "methodname2": "interval: number;", + "api type": "Field", + "path": "\\api\\@system.bluetooth.d.ts" + }, + { + "module name": "system.bluetooth", + "classname": "StartBLEScanOptions", + "methodname": "success", + "methodname2": "success: () => void;", + "api type": "Method", + "path": "\\api\\@system.bluetooth.d.ts" + }, + { + "module name": "system.bluetooth", + "classname": "StartBLEScanOptions", + "methodname": "fail", + "methodname2": "fail: (data: string, code: number) => void;", + "api type": "Method", + "path": "\\api\\@system.bluetooth.d.ts" + }, + { + "module name": "system.bluetooth", + "classname": "StartBLEScanOptions", + "methodname": "complete", + "methodname2": "complete: () => void;", + "api type": "Method", + "path": "\\api\\@system.bluetooth.d.ts" + }, + { + "module name": "system.bluetooth", + "classname": "StopBLEScanOptions", + "methodname": "success", + "methodname2": "success: () => void;", + "api type": "Method", + "path": "\\api\\@system.bluetooth.d.ts" + }, + { + "module name": "system.bluetooth", + "classname": "StopBLEScanOptions", + "methodname": "fail", + "methodname2": "fail: (data: string, code: number) => void;", + "api type": "Method", + "path": "\\api\\@system.bluetooth.d.ts" + }, + { + "module name": "system.bluetooth", + "classname": "StopBLEScanOptions", + "methodname": "complete", + "methodname2": "complete: () => void;", + "api type": "Method", + "path": "\\api\\@system.bluetooth.d.ts" + }, + { + "module name": "system.bluetooth", + "classname": "BluetoothDevice", + "methodname": "addrType", + "methodname2": "addrType: \"public\" | \"random\";", + "api type": "Field", + "path": "\\api\\@system.bluetooth.d.ts" + }, + { + "module name": "system.bluetooth", + "classname": "BluetoothDevice", + "methodname": "addr", + "methodname2": "addr: string;", + "api type": "Field", + "path": "\\api\\@system.bluetooth.d.ts" + }, + { + "module name": "system.bluetooth", + "classname": "BluetoothDevice", + "methodname": "rssi", + "methodname2": "rssi: number;", + "api type": "Field", + "path": "\\api\\@system.bluetooth.d.ts" + }, + { + "module name": "system.bluetooth", + "classname": "BluetoothDevice", + "methodname": "txpower", + "methodname2": "txpower: string;", + "api type": "Field", + "path": "\\api\\@system.bluetooth.d.ts" + }, + { + "module name": "system.bluetooth", + "classname": "BluetoothDevice", + "methodname": "data", + "methodname2": "data: string;", + "api type": "Field", + "path": "\\api\\@system.bluetooth.d.ts" + }, + { + "module name": "system.bluetooth", + "classname": "BLEFoundResponse", + "methodname": "devices", + "methodname2": "devices: Array;", + "api type": "Field", + "path": "\\api\\@system.bluetooth.d.ts" + }, + { + "module name": "system.bluetooth", + "classname": "SubscribeBLEFoundOptions", + "methodname": "success", + "methodname2": "success: (data: BLEFoundResponse) => void;", + "api type": "Method", + "path": "\\api\\@system.bluetooth.d.ts" + }, + { + "module name": "system.bluetooth", + "classname": "SubscribeBLEFoundOptions", + "methodname": "fail", + "methodname2": "fail: (data: string, code: number) => void;", + "api type": "Method", + "path": "\\api\\@system.bluetooth.d.ts" + }, + { + "module name": "system.bluetooth", + "classname": "Bluetooth", + "methodname": "startBLEScan", + "methodname2": "static startBLEScan(options: StartBLEScanOptions): void;", + "api type": "Method", + "path": "\\api\\@system.bluetooth.d.ts" + }, + { + "module name": "system.bluetooth", + "classname": "Bluetooth", + "methodname": "stopBLEScan", + "methodname2": "static stopBLEScan(options: StopBLEScanOptions): void;", + "api type": "Method", + "path": "\\api\\@system.bluetooth.d.ts" + }, + { + "module name": "system.bluetooth", + "classname": "Bluetooth", + "methodname": "subscribeBLEFound", + "methodname2": "static subscribeBLEFound(options: SubscribeBLEFoundOptions): void;", + "api type": "Method", + "path": "\\api\\@system.bluetooth.d.ts" + }, + { + "module name": "system.bluetooth", + "classname": "Bluetooth", + "methodname": "unsubscribeBLEFound", + "methodname2": "static unsubscribeBLEFound(): void;", + "api type": "Method", + "path": "\\api\\@system.bluetooth.d.ts" + }, + { + "module name": "system.brightness", + "classname": "BrightnessResponse", + "methodname": "value", + "methodname2": "value: number;", + "api type": "Field", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "GetBrightnessOptions", + "methodname": "success", + "methodname2": "success?: (data: BrightnessResponse) => void;", + "api type": "Method", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "GetBrightnessOptions", + "methodname": "fail", + "methodname2": "fail?: (data: string, code: number) => void;", + "api type": "Method", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "GetBrightnessOptions", + "methodname": "complete", + "methodname2": "complete?: () => void;", + "api type": "Method", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "SetBrightnessOptions", + "methodname": "value", + "methodname2": "value: number;", + "api type": "Field", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "SetBrightnessOptions", + "methodname": "success", + "methodname2": "success?: () => void;", + "api type": "Method", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "SetBrightnessOptions", + "methodname": "fail", + "methodname2": "fail?: (data: string, code: number) => void;", + "api type": "Method", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "SetBrightnessOptions", + "methodname": "complete", + "methodname2": "complete?: () => void", + "api type": "Method", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "BrightnessModeResponse", + "methodname": "mode", + "methodname2": "mode: number;", + "api type": "Field", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "GetBrightnessModeOptions", + "methodname": "success", + "methodname2": "success?: (data: BrightnessModeResponse) => void;", + "api type": "Method", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "GetBrightnessModeOptions", + "methodname": "fail", + "methodname2": "fail?: (data: string, code: number) => void;", + "api type": "Method", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "GetBrightnessModeOptions", + "methodname": "complete", + "methodname2": "complete?: () => void;", + "api type": "Method", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "SetBrightnessModeOptions", + "methodname": "mode", + "methodname2": "mode: number;", + "api type": "Field", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "SetBrightnessModeOptions", + "methodname": "success", + "methodname2": "success?: () => void;", + "api type": "Method", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "SetBrightnessModeOptions", + "methodname": "fail", + "methodname2": "fail?: (data: string, code: number) => void;", + "api type": "Method", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "SetBrightnessModeOptions", + "methodname": "complete", + "methodname2": "complete?: () => void", + "api type": "Method", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "SetKeepScreenOnOptions", + "methodname": "keepScreenOn", + "methodname2": "keepScreenOn: boolean;", + "api type": "Field", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "SetKeepScreenOnOptions", + "methodname": "success", + "methodname2": "success?: () => void;", + "api type": "Method", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "SetKeepScreenOnOptions", + "methodname": "fail", + "methodname2": "fail?: (data: string, code: number) => void;", + "api type": "Method", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "SetKeepScreenOnOptions", + "methodname": "complete", + "methodname2": "complete?: () => void", + "api type": "Method", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "Brightness", + "methodname": "getValue", + "methodname2": "static getValue(options?: GetBrightnessOptions): void;", + "api type": "Method", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "Brightness", + "methodname": "setValue", + "methodname2": "static setValue(options?: SetBrightnessOptions): void;", + "api type": "Method", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "Brightness", + "methodname": "getMode", + "methodname2": "static getMode(options?: GetBrightnessModeOptions): void;", + "api type": "Method", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "Brightness", + "methodname": "setMode", + "methodname2": "static setMode(options?: SetBrightnessModeOptions): void;", + "api type": "Method", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "system.brightness", + "classname": "Brightness", + "methodname": "setKeepScreenOn", + "methodname2": "static setKeepScreenOn(options?: SetKeepScreenOnOptions): void;", + "api type": "Method", + "path": "\\api\\@system.brightness.d.ts" + }, + { + "module name": "AbilityContext", + "classname": "AbilityContext", + "methodname": "requestPermissionsFromUser", + "methodname2": "requestPermissionsFromUser(permissions: Array, requestCallback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\application\\AbilityContext.d.ts" + }, + { + "module name": "AbilityContext", + "classname": "AbilityContext", + "methodname": "requestPermissionsFromUser", + "methodname2": "requestPermissionsFromUser(permissions: Array): Promise;", + "api type": "Method", + "path": "\\api\\application\\AbilityContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityExtensionContext", + "methodname": "setTargetBundleName", + "methodname2": "setTargetBundleName(targetNames: Array): Promise;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityExtensionContext", + "methodname": "setTargetBundleName", + "methodname2": "setTargetBundleName(targetNames: Array, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityExtensionContext", + "methodname": "getFocusElement", + "methodname2": "getFocusElement(isAccessibilityFocus?: boolean): Promise;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityExtensionContext", + "methodname": "getFocusElement", + "methodname2": "getFocusElement(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityExtensionContext", + "methodname": "getFocusElement", + "methodname2": "getFocusElement(isAccessibilityFocus: boolean, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityExtensionContext", + "methodname": "getWindowRootElement", + "methodname2": "getWindowRootElement(windowId?: number): Promise;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityExtensionContext", + "methodname": "getWindowRootElement", + "methodname2": "getWindowRootElement(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityExtensionContext", + "methodname": "getWindowRootElement", + "methodname2": "getWindowRootElement(windowId: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityExtensionContext", + "methodname": "getWindows", + "methodname2": "getWindows(displayId?: number): Promise>;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityExtensionContext", + "methodname": "getWindows", + "methodname2": "getWindows(callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityExtensionContext", + "methodname": "getWindows", + "methodname2": "getWindows(displayId: number, callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityExtensionContext", + "methodname": "injectGesture", + "methodname2": "injectGesture(gesturePath: GesturePath): Promise;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityExtensionContext", + "methodname": "injectGesture", + "methodname2": "injectGesture(gesturePath: GesturePath, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityElement", + "methodname": "attributeNames", + "methodname2": "attributeNames(): Promise>;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityElement", + "methodname": "attributeNames", + "methodname2": "attributeNames(callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityElement", + "methodname": "attributeValue", + "methodname2": "attributeValue(attributeName: T): Promise;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityElement", + "methodname": "attributeValue", + "methodname2": "attributeValue(attributeName: T,\n callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityElement", + "methodname": "actionNames", + "methodname2": "actionNames(): Promise>;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityElement", + "methodname": "actionNames", + "methodname2": "actionNames(callback: AsyncCallback>): void;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityElement", + "methodname": "performAction", + "methodname2": "performAction(actionName: string, parameters?: object): Promise;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityElement", + "methodname": "performAction", + "methodname2": "performAction(actionName: string, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityElement", + "methodname": "performAction", + "methodname2": "performAction(actionName: string, parameters: object, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityElement", + "methodname": "findElement", + "methodname2": "findElement(type: 'content', condition: string): Promise>;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityElement", + "methodname": "findElement", + "methodname2": "findElement(type: 'content', condition: string, callback: AsyncCallback>): void", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityElement", + "methodname": "findElement", + "methodname2": "findElement(type: 'focusType', condition: FocusType): Promise;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityElement", + "methodname": "findElement", + "methodname2": "findElement(type: 'focusType', condition: FocusType, callback: AsyncCallback): void", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityElement", + "methodname": "findElement", + "methodname2": "findElement(type: 'focusDirection', condition: FocusDirection): Promise;", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "AccessibilityElement", + "methodname": "findElement", + "methodname2": "findElement(type: 'focusDirection', condition: FocusDirection, callback: AsyncCallback): void", + "api type": "Method", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "Rect", + "methodname": "left", + "methodname2": "left: number;", + "api type": "Field", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "Rect", + "methodname": "top", + "methodname2": "top: number;", + "api type": "Field", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "Rect", + "methodname": "width", + "methodname2": "width: number;", + "api type": "Field", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "AccessibilityExtensionContext", + "classname": "Rect", + "methodname": "height", + "methodname2": "height: number;", + "api type": "Field", + "path": "\\api\\application\\AccessibilityExtensionContext.d.ts" + }, + { + "module name": "PermissionRequestResult", + "classname": "PermissionRequestResult", + "methodname": "permissions", + "methodname2": "permissions: Array;", + "api type": "Field", + "path": "\\api\\application\\PermissionRequestResult.d.ts" + }, + { + "module name": "PermissionRequestResult", + "classname": "PermissionRequestResult", + "methodname": "authResults", + "methodname2": "authResults: Array;", + "api type": "Field", + "path": "\\api\\application\\PermissionRequestResult.d.ts" + }, + { + "module name": "UIAbilityContext", + "classname": "UIAbilityContext", + "methodname": "requestPermissionsFromUser", + "methodname2": "requestPermissionsFromUser(permissions: Array, requestCallback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\application\\UIAbilityContext.d.ts" + }, + { + "module name": "UIAbilityContext", + "classname": "UIAbilityContext", + "methodname": "requestPermissionsFromUser", + "methodname2": "requestPermissionsFromUser(permissions: Array): Promise;", + "api type": "Method", + "path": "\\api\\application\\UIAbilityContext.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "columnNames", + "methodname2": "columnNames: Array;", + "api type": "Field", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "columnCount", + "methodname2": "columnCount: number;", + "api type": "Field", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "rowCount", + "methodname2": "rowCount: number;", + "api type": "Field", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "rowIndex", + "methodname2": "rowIndex: number;", + "api type": "Field", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "isAtFirstRow", + "methodname2": "isAtFirstRow: boolean;", + "api type": "Field", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "isAtLastRow", + "methodname2": "isAtLastRow: boolean;", + "api type": "Field", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "isEnded", + "methodname2": "isEnded: boolean;", + "api type": "Field", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "isStarted", + "methodname2": "isStarted: boolean;", + "api type": "Field", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "isClosed", + "methodname2": "isClosed: boolean;", + "api type": "Field", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "getColumnIndex", + "methodname2": "getColumnIndex(columnName: string): number;", + "api type": "Method", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "getColumnName", + "methodname2": "getColumnName(columnIndex: number): string;", + "api type": "Method", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "goTo", + "methodname2": "goTo(offset: number): boolean;", + "api type": "Method", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "goToRow", + "methodname2": "goToRow(position: number): boolean;", + "api type": "Method", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "goToFirstRow", + "methodname2": "goToFirstRow(): boolean;", + "api type": "Method", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "goToLastRow", + "methodname2": "goToLastRow(): boolean;", + "api type": "Method", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "goToNextRow", + "methodname2": "goToNextRow(): boolean;", + "api type": "Method", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "goToPreviousRow", + "methodname2": "goToPreviousRow(): boolean;", + "api type": "Method", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "getBlob", + "methodname2": "getBlob(columnIndex: number): Uint8Array;", + "api type": "Method", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "getString", + "methodname2": "getString(columnIndex: number): string;", + "api type": "Method", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "getLong", + "methodname2": "getLong(columnIndex: number): number;", + "api type": "Method", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "getDouble", + "methodname2": "getDouble(columnIndex: number): number;", + "api type": "Method", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "isColumnNull", + "methodname2": "isColumnNull(columnIndex: number): boolean;", + "api type": "Method", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "resultSet", + "classname": "ResultSetV9", + "methodname": "close", + "methodname2": "close(): void;", + "api type": "Method", + "path": "\\api\\data\\rdb\\resultSet.d.ts" + }, + { + "module name": "nfctech", + "classname": "NfcATag", + "methodname": "getSak", + "methodname2": "getSak(): number;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NfcATag", + "methodname": "getAtqa", + "methodname2": "getAtqa(): number[];", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NfcBTag", + "methodname": "getRespAppData", + "methodname2": "getRespAppData(): number[];", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NfcBTag", + "methodname": "getRespProtocol", + "methodname2": "getRespProtocol(): number[];", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NfcFTag", + "methodname": "getSystemCode", + "methodname2": "getSystemCode(): number[];", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NfcFTag", + "methodname": "getPmm", + "methodname2": "getPmm(): number[];", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NfcVTag", + "methodname": "getResponseFlags", + "methodname2": "getResponseFlags(): number;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NfcVTag", + "methodname": "getDsfId", + "methodname2": "getDsfId(): number;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "IsoDepTag", + "methodname": "getHistoricalBytes", + "methodname2": "getHistoricalBytes(): number[];", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "IsoDepTag", + "methodname": "getHiLayerResponse", + "methodname2": "getHiLayerResponse(): number[];", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "IsoDepTag", + "methodname": "isExtendedApduSupported", + "methodname2": "isExtendedApduSupported(): Promise;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "IsoDepTag", + "methodname": "isExtendedApduSupported", + "methodname2": "isExtendedApduSupported(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NdefMessage", + "methodname": "getNdefRecords", + "methodname2": "getNdefRecords(): tag.NdefRecord[];", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NdefTag", + "methodname": "getNdefTagType", + "methodname2": "getNdefTagType(): tag.NfcForumType;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NdefTag", + "methodname": "getNdefMessage", + "methodname2": "getNdefMessage(): NdefMessage;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NdefTag", + "methodname": "isNdefWritable", + "methodname2": "isNdefWritable(): boolean;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NdefTag", + "methodname": "readNdef", + "methodname2": "readNdef(): Promise;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NdefTag", + "methodname": "readNdef", + "methodname2": "readNdef(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NdefTag", + "methodname": "writeNdef", + "methodname2": "writeNdef(msg: NdefMessage): Promise;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NdefTag", + "methodname": "writeNdef", + "methodname2": "writeNdef(msg: NdefMessage, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NdefTag", + "methodname": "canSetReadOnly", + "methodname2": "canSetReadOnly(): boolean;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NdefTag", + "methodname": "setReadOnly", + "methodname2": "setReadOnly(): Promise;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NdefTag", + "methodname": "setReadOnly", + "methodname2": "setReadOnly(callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NdefTag", + "methodname": "getNdefTagTypeString", + "methodname2": "getNdefTagTypeString(type: tag.NfcForumType): string;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareClassicTag", + "methodname": "authenticateSector", + "methodname2": "authenticateSector(sectorIndex: number, key: number[], isKeyA: boolean): Promise;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareClassicTag", + "methodname": "authenticateSector", + "methodname2": "authenticateSector(sectorIndex: number, key: number[], isKeyA: boolean, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareClassicTag", + "methodname": "readSingleBlock", + "methodname2": "readSingleBlock(blockIndex: number): Promise;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareClassicTag", + "methodname": "readSingleBlock", + "methodname2": "readSingleBlock(blockIndex: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareClassicTag", + "methodname": "writeSingleBlock", + "methodname2": "writeSingleBlock(blockIndex: number, data: number[]): Promise;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareClassicTag", + "methodname": "writeSingleBlock", + "methodname2": "writeSingleBlock(blockIndex: number, data: number[], callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareClassicTag", + "methodname": "incrementBlock", + "methodname2": "incrementBlock(blockIndex: number, value: number): Promise;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareClassicTag", + "methodname": "incrementBlock", + "methodname2": "incrementBlock(blockIndex: number, value: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareClassicTag", + "methodname": "decrementBlock", + "methodname2": "decrementBlock(blockIndex: number, value: number): Promise;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareClassicTag", + "methodname": "decrementBlock", + "methodname2": "decrementBlock(blockIndex: number, value: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareClassicTag", + "methodname": "transferToBlock", + "methodname2": "transferToBlock(blockIndex: number): Promise;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareClassicTag", + "methodname": "transferToBlock", + "methodname2": "transferToBlock(blockIndex: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareClassicTag", + "methodname": "restoreFromBlock", + "methodname2": "restoreFromBlock(blockIndex: number): Promise;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareClassicTag", + "methodname": "restoreFromBlock", + "methodname2": "restoreFromBlock(blockIndex: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareClassicTag", + "methodname": "getSectorCount", + "methodname2": "getSectorCount(): number;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareClassicTag", + "methodname": "getBlockCountInSector", + "methodname2": "getBlockCountInSector(sectorIndex: number): number;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareClassicTag", + "methodname": "getType", + "methodname2": "getType(): tag.MifareClassicType;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareClassicTag", + "methodname": "getTagSize", + "methodname2": "getTagSize(): number;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareClassicTag", + "methodname": "isEmulatedTag", + "methodname2": "isEmulatedTag(): boolean;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareClassicTag", + "methodname": "getBlockIndex", + "methodname2": "getBlockIndex(sectorIndex: number): number;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareClassicTag", + "methodname": "getSectorIndex", + "methodname2": "getSectorIndex(blockIndex: number): number;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareUltralightTag", + "methodname": "readMultiplePages", + "methodname2": "readMultiplePages(pageIndex: number): Promise;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareUltralightTag", + "methodname": "readMultiplePages", + "methodname2": "readMultiplePages(pageIndex: number, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareUltralightTag", + "methodname": "writeSinglePage", + "methodname2": "writeSinglePage(pageIndex: number, data: number[]): Promise;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareUltralightTag", + "methodname": "writeSinglePage", + "methodname2": "writeSinglePage(pageIndex: number, data: number[], callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "MifareUltralightTag", + "methodname": "getType", + "methodname2": "getType(): tag.MifareUltralightType;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NdefFormatableTag", + "methodname": "format", + "methodname2": "format(message: NdefMessage): Promise;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NdefFormatableTag", + "methodname": "format", + "methodname2": "format(message: NdefMessage, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NdefFormatableTag", + "methodname": "formatReadOnly", + "methodname2": "formatReadOnly(message: NdefMessage): Promise;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "nfctech", + "classname": "NdefFormatableTag", + "methodname": "formatReadOnly", + "methodname2": "formatReadOnly(message: NdefMessage, callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\tag\\nfctech.d.ts" + }, + { + "module name": "tagSession", + "classname": "TagSession", + "methodname": "getTagInfo", + "methodname2": "getTagInfo(): tag.TagInfo;", + "api type": "Method", + "path": "\\api\\tag\\tagSession.d.ts" + }, + { + "module name": "tagSession", + "classname": "TagSession", + "methodname": "connectTag", + "methodname2": "connectTag(): boolean;", + "api type": "Method", + "path": "\\api\\tag\\tagSession.d.ts" + }, + { + "module name": "tagSession", + "classname": "TagSession", + "methodname": "reset", + "methodname2": "reset(): void;", + "api type": "Method", + "path": "\\api\\tag\\tagSession.d.ts" + }, + { + "module name": "tagSession", + "classname": "TagSession", + "methodname": "isTagConnected", + "methodname2": "isTagConnected(): boolean;", + "api type": "Method", + "path": "\\api\\tag\\tagSession.d.ts" + }, + { + "module name": "tagSession", + "classname": "TagSession", + "methodname": "setSendDataTimeout", + "methodname2": "setSendDataTimeout(timeout: number): boolean;", + "api type": "Method", + "path": "\\api\\tag\\tagSession.d.ts" + }, + { + "module name": "tagSession", + "classname": "TagSession", + "methodname": "getSendDataTimeout", + "methodname2": "getSendDataTimeout(): number;", + "api type": "Method", + "path": "\\api\\tag\\tagSession.d.ts" + }, + { + "module name": "tagSession", + "classname": "TagSession", + "methodname": "sendData", + "methodname2": "sendData(data: number[]): Promise;", + "api type": "Method", + "path": "\\api\\tag\\tagSession.d.ts" + }, + { + "module name": "tagSession", + "classname": "TagSession", + "methodname": "sendData", + "methodname2": "sendData(data: number[], callback: AsyncCallback): void;", + "api type": "Method", + "path": "\\api\\tag\\tagSession.d.ts" + }, + { + "module name": "tagSession", + "classname": "TagSession", + "methodname": "getMaxSendLength", + "methodname2": "getMaxSendLength(): number;", + "api type": "Method", + "path": "\\api\\tag\\tagSession.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebMessagePort", + "methodname": "constructor", + "methodname2": "constructor();", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebMessagePort", + "methodname": "close", + "methodname2": "close(): void;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebMessagePort", + "methodname": "postMessageEvent", + "methodname2": "postMessageEvent(message: WebMessageEvent): void;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebMessagePort", + "methodname": "onMessageEvent", + "methodname2": "onMessageEvent(callback: (result: string) => void): void;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebMessageEvent", + "methodname": "constructor", + "methodname2": "constructor();", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebMessageEvent", + "methodname": "getData", + "methodname2": "getData(): string;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebMessageEvent", + "methodname": "setData", + "methodname2": "setData(data: string): void;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebMessageEvent", + "methodname": "getPorts", + "methodname2": "getPorts(): Array;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebMessageEvent", + "methodname": "setPorts", + "methodname2": "setPorts(ports: Array): void;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "HitTestValue", + "methodname": "constructor", + "methodname2": "constructor();", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "HitTestValue", + "methodname": "getType", + "methodname2": "getType(): HitTestType;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "HitTestValue", + "methodname": "getExtra", + "methodname2": "getExtra(): string;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebCookie", + "methodname": "isCookieAllowed", + "methodname2": "isCookieAllowed(): boolean;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebCookie", + "methodname": "isThirdPartyCookieAllowed", + "methodname2": "isThirdPartyCookieAllowed(): boolean;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebCookie", + "methodname": "isFileURICookieAllowed", + "methodname2": "isFileURICookieAllowed(): boolean;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebCookie", + "methodname": "putAcceptCookieEnabled", + "methodname2": "putAcceptCookieEnabled(accept: boolean): void;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebCookie", + "methodname": "putAcceptThirdPartyCookieEnabled", + "methodname2": "putAcceptThirdPartyCookieEnabled(accept: boolean): void;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebCookie", + "methodname": "putAcceptFileURICookieEnabled", + "methodname2": "putAcceptFileURICookieEnabled(accept: boolean): void;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebCookie", + "methodname": "setCookie", + "methodname2": "setCookie(url: string, value: string): boolean;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebCookie", + "methodname": "saveCookieSync", + "methodname2": "saveCookieSync(): boolean;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebCookie", + "methodname": "getCookie", + "methodname2": "getCookie(url: string): string;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebCookie", + "methodname": "existCookie", + "methodname2": "existCookie(): boolean;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebCookie", + "methodname": "deleteEntireCookie", + "methodname2": "deleteEntireCookie(): void;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebCookie", + "methodname": "deleteSessionCookie", + "methodname2": "deleteSessionCookie(): void;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ArkUI", + "classname": "WebCookie", + "methodname": "deleteExpiredCookie", + "methodname2": "deleteExpiredCookie(): void;", + "api type": "Method", + "path": "\\component\\ets\\web.d.ts" + }, + { + "module name": "ohos.app.ability.UIAbility", + "classname": "UIAbility", + "methodname": "onSaveState", + "methodname2": "onSaveState(reason: AbilityConstant.StateType, wantParam: {\n [key: string]: any;\n }): AbilityConstant.OnSaveResult;", + "api type": "Method", + "path": "\\api\\@ohos.app.ability.UIAbility.d.ts" + } +] \ No newline at end of file